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 a

Msdn
System.Data.DataView

...

System.Data.DataView
1DataView
into a Table at the point of this Element in the document.

Signature
C#
C#
 public Table ImportData(System.Data.DataView data)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Function ImportData(ByVal data As System.Data.DataView) As Table
{signature}
{parameters}
{param:data}Contains the data to be imported.{param}
{returns}The {{Table}} that the data was imported into.{returns}
{example}{code:csharp|title=C#}
Parameters
Param
data
data

Contains the data to be imported.

Returns

The Table that the data was imported into.

Example
Code Block
csharp
csharp
titleC#

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

Dim tbl As Table = e.ImportData(dv)
{code} {example}