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

...

Introducedin
7.1.0.1855

...

7.1.0.1855
Description

Excerpt

Imports data from a SharePoint List to the specified Area. The new data will overwrite values and formulas in the target worksheet cells, but existing formatting will be preserved.

Signature
C#
C#
public static Area ImportData(this Area area, Microsoft.SharePoint.SPList list)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Shared Function ImportData(ByVal area As Area, ByVal list As Microsoft.SharePoint.SPList) As Area
{signature}
{parameters}
{param:area}The current Area object which is calling ImportData
{param}
{param:list}SharePoint List to use as a data source for the Area{param}
{returns}An {{Area}} object representing the set of cells populated with the imported values.{returns}
{remarks}
{note}This is an extension method for the Area object to be used for binding SharePoint data to spreadsheets from within SharePoint.  To use this method, you must add a reference to 
Parameters
Param
area
area

The current Area object which is calling ImportData

Param
list
list

SharePoint List to use as a data source for the Area

Returns

An Area object representing the set of cells populated with the imported values.

Remarks
Note

This is an extension method for the Area object to be used for binding SharePoint data to spreadsheets from within SharePoint. To use this method, you must add a reference to SoftArtisans.OfficeWriter.ExcelWriter.SharePointIntegration.dll

{note} {remarks} {example}{code:csharp|title=C#}

Example
Code Block
csharp
csharp
titleC#


          Area importedArea = a.ImportData(myList);
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


          Dim importedArea As Area = a.ImportData(myList)
        
{code} {example}