Sets the specified repeat block's data source to an collection.

 public void SetRepeatBlock(System.Collections.IEnumerator dataSource, System.String fieldName, System.String bookmark)
Public Sub SetRepeatBlock(ByVal dataSource As System.Collections.IEnumerator, ByVal fieldName As String, ByVal bookmark As String)

An IEnumerator collection to use as the data source.

The name of the merge field at which to insert the values.

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.

  1. Open the Edit menu.
  2. Select Go To...
  3. Select Bookmark.
  4. Under Enter bookmark name, open the drop-down list of bookmark names.

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

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. All merge fields in the repeat block will bind to the specified data source.


          wTempl.SetRepeatBlock(coll, "ProductID", "Products");
        

          wTempl.SetRepeatBlock(coll, "ProductID", "Products")