Introduced in build 4.1.0.1379
Description
Imports the data from a SharePoint List into a Table at the point of the current element in the document.
C#
<p> public static Table ImportData( this Element element, Microsoft.SharePoint.SPList list)</p> |
vb.net
<p> Public Shared Function ImportData( ByVal element As Element, ByVal list As Microsoft.SharePoint.SPList) As Table</p> |
Parameters
element
The current element which is calling ImportDatalist
The SharePoint List to be used as a data sourceReturns
TheTable
into which the data is being imported
Remarks
Examples
C#
Table tbl = e.ImportData(myList); |
vb.net
Dim tbl As Table = e.ImportData(myList) |