Description
Sets the specified repeat block's data source to an ADO RecordSet or an array.
Signature: VBScript
Parameters
data
The array or RecordSet to use as the data source.
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:
1. Open the template in Microsoft Word.
2. Open the Edit menu.
3. Select Go To...
4. Select Bookmark.
5. Under Enter bookmark name, open the drop-down list of bookmark names.
column_names
A String array of data source field names. Pass column_names to SetRepeatBlock if the data source is an array. The column names must be the same as the corresponding merge field names in the template.
maxRows
Specifies the maximum number of rows to import from the data source. If maxRows is not specified, WordWriter will import all rows in the data source.
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 bookmarkmust exist in the template.
If you pass an empty data source to SetRepeatBlock, WordWriter will not include the specified repeat block in the generated Word file.
