Sets the specified repeat block's data source to a SharePoint View. |
public static void SetRepeatBlock(this WordTemplate template, Microsoft.SharePoint.SPView view, Microsoft.SharePoint.SPList list, string bookmark, int maxRows) |
Public Shared Sub SetRepeatBlock(ByVal template As WordTemplate, ByVal view As Microsoft.SharePoint.SPView, ByVal list As Microsoft.SharePoint.SPList, ByVal bookmark As String, ByVal maxRows As Integer) |
The current WordTemplate object calling SetRepeatBlock |
The SharePoint View to use as the data source. |
The SharePoint List to which the View applies. |
The bookmark name of the template repeat block. The bookmark passed to
|
Specifies the maximum number of repetitions to write to the file. If Next fields are enabled (see EnableNEXTFields), then the number of rows imported from the data source is |
|
A repeat block is a fragment in the template document that will be repeated for each row in a data source. In the template document, repeat blocks are defined by Word bookmarks that contain merge fields. You can call SetRepeatBlock several times for a single instance of WordTemplate. The repeat block specified by the parameter
|
|