Introduced in build 4.1.0.1379
Description
Sets the specified repeat block's data source to a SharePoint View.
C#
vb.net
Parameters
template
The current WordTemplate object calling SetRepeatBlockview
The SharePoint View to use as the data source.list
The SharePoint List to which the View applies.bookmark
The bookmark name of the template repeat block. The bookmark passed to SetRepeatBlock
must exist in the template Word file. To see a list of template bookmark names:
- Open the template in Microsoft Word.
- Open the Edit menu.
- Select Go To...
- Select Bookmark.
- Under Enter bookmark name, open the drop-down list of bookmark names.
Exceptions
ArgumentNullException
SetRepeatBlock
will throw this exception if null
(C#) or Nothing
(VB.NET) is passed to the method.
ArgumentException
Remarks
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 bookmark
must exist in the template.
Examples
C#
vb.net