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
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: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#}
tbl.ImportData(dataArray);{code}
{code:vb.net|title=vb.net}
tbl.ImportData(dataArray){code}

{example}