Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Imports the data from a 2-dimensional array into a Table at the point of the current element in the document.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Imports the data from a 2\-dimensional array into a [Table|Table] at the point of the current element in the document.{excerpt}
{signature:C#}
 public virtual Table ImportData(System.Object[][] data)
Signature
{signature}{signature:vb.net
vb.net
}
Public Overridable Function ImportData(ByVal data As Object()()) As Table
Parameters

...

A 2-dimensional array from which to import the data from.

Returns

The Table that the data was imported into.

{signature}
{parameters}
{param:data}A 2\-dimensional array from which to import the data from.{param}
{returns}The {{Table}} that the data was imported into.{returns}
{example}{code:csharp|title=C#}
Table tbl = e.ImportData(dataArray);
{code}
{code:vb.net
|title=vb.net
}
Dim tbl As Table = e.ImportData(dataArray){code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle