Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Imports data from an array of objects to the current table.

Signature
C#
C#
 public void ImportDataRow(System.Object[] row)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub ImportDataRow(ByVal row As Object())
{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#}
Parameters
Param
row
row

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

Exceptions
Exception
System.Exception
System.Exception

Example
Code Block
csharp
csharp
titleC#

tbl.ImportData(dataArray);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

tbl.ImportData(dataArray)
{code} {example}