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 data from an array of objects to the current table.

Signature
C#C#
Wiki Markup
{description}
{excerpt}Imports data from an array of objects to the current table.{excerpt}
{signature:C#}
 public void ImportDataRow(System.Object[] row)
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub ImportDataRow(ByVal row As Object())
Parameters

...

An array containing the set of values to import to the table.

Exceptions
{signature}
{parameters}
{param:row}An array containing the set of values to import to the table.{param}
{exceptions}
{exception:System.Exception}{exception}
{example}{code:csharp|title=C#}
tbl.ImportData(dataArray);
{code}
{code:vb.net
|title=vb.net
}
tbl.ImportData(dataArray){code}

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