Message-ID: <1233639833.9555.1711694659597.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9554_1365074162.1711694659597" ------=_Part_9554_1365074162.1711694659597 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Area.ImportData(Object(,))

Area.ImportData(Object(,))

Description

= =20

Imports data from a rectangular array of objects to the specified Area. The new data will overwrite values and formulas in the target wo= rksheet cells, but existing formatting will be preserved.

=20
C#
=20
 public Area ImportData(System.Object[,] data)
=20
=20
vb.net
=20
Public Function ImportData(ByVal data As Object(,)) As Area
=20
=20

Parameters

=20
data
=20

A rectangular array of values to import to the worksheet. The first dime= nsion corresponds to row and the second to column.
Thus, an array of = data { {"A","X"},{"B","Y"},{"C= ","Z"} } would be inserted into the worksheet as:

=20
=20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20 =20

A

X

B

Y

C

Z

=20

Returns

An=20 Area object representing the set of cells populated with the i= mported values.=20

Examples

=20
C#
=20
Area importedArea =3D a.ImportData(dataArray);
=20
=20
vb.net
=20
Dim importedArea As Area =3D a.ImportData(dataArray)
=20
------=_Part_9554_1365074162.1711694659597--