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
Wiki Markup
{description}
{excerpt}Gets or sets whether NEXT fields should be enabled in the WordTemplate. If NEXT fields are enabled, the data source will move to the next row of data when merge field is repeated in the template file.
{excerpt}
{signature:C#}
 public boolean EnableNEXTFields{ get; set; }
{signature}{signature:vb.net}
Public Property EnableNEXTFields() As Boolean
{signature}
{example}{code:csharp|title=C#}

          WordTemplate WordTempl = new WordTemplate();
          WordTempl.EnableNEXTFields = true;
        {code}
{code:vbnet|title=vb.net}

          Dim WordTempl As New WordTemplate()
          WordTempl.EnableNEXTFields = True
        {code}

{example}