Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Wiki Markup
{introducedin:4.1.0.1379

...

Description

Excerpt

Imports the data from a SharePoint List into a Table at the point of the current element in the document.

Signature
C#C#
}
{description}
{excerpt}Imports the data from a SharePoint List into a [Table|Table] at the point of the current element in the document.{excerpt}
{signature:C#}
public static Table ImportData(this Element element, Microsoft.SharePoint.SPList list)
Signature
{signature}{signature:vb.net
vb.net
}
Public Shared Function ImportData(ByVal element As Element, ByVal list As Microsoft.SharePoint.SPList) As Table
Parameters

...

The current element which is calling ImportData

...

The SharePoint List to be used as a data source

Returns

The Table into which the data is being imported

This is an extension method for the Element object to be used for binding SharePoint data to documents from within SharePoint. To use this method, you must add a reference to
{signature}
{parameters}
{param:element}The current element which is calling ImportData{param}
{param:list}The SharePoint List to be used as a data source{param}
{returns}The {{Table}} into which the data is being imported{returns}
{remarks}
{note}This is an extension method for the Element object to be used for binding SharePoint data to documents from within SharePoint.  To use this method, you must add a reference to SoftArtisans.OfficeWriter.WordWriter.SharePointIntegration.dll
{note}
{remarks}
{example}{code:csharp|title=C#}
Table tbl = e.ImportData(myList);
{code}
{code:vb.net
|title=vb.net
}
Dim tbl As Table = e.ImportData(myList){code}

{example}
Remarks
Note
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle