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
4.1.0.1379
4.1.0.1379
Description

Excerpt

Sets a main document data source to a SharePoint View. If the specified View contains more than one row, WordWriter will use the first row as the data source.

Signature
C#
C#
public static void SetDataSource(this WordTemplate template, Microsoft.SharePoint.SPView view, Microsoft.SharePoint.SPList list, string name)
Signature
vb.net
vb.net
Public Shared Sub SetDataSource(ByVal template As WordTemplate, ByVal view As Microsoft.SharePoint.SPView, ByVal list As Microsoft.SharePoint.SPList, ByVal name As String)
Parameters
Param
template
template

The current ExcelTemplate which is calling SetDataSource

Param
view
view

A SharePoint View to use as the data source. WordWriter will use the first row of the View as the data source

Param
list
list

A SharePoint List to which the View applies

Param
name
name

Specifies the data source name for the set of merge fields

Exceptions
Exception
ArgumentNullException
ArgumentNullException

Save will throw this exception if null (C#) or Nothing (VB.NET) is passed to the method.

Exception
ArgumentException
ArgumentException

Remarks

Each merge field in a WordWriter template must bind to a data source field/value pair. The number of merge fields in the template may not exceed the number of values in the data source. However, the number of values in the data source may be greater than the number of merge fields in the template.

This method may be called once for each set of merge fields in the main document.

Note

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

Example
Code Block
csharp
csharp
titleC#
          //--- Pass the SPList to SetDataSource.
          oWW.SetDataSource(myView, myList, "Employee");
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Pass the SPList to SetDataSource.
          oWW.SetDataSource(myView, myList, "Employee")