Sets or returns a boolean that represents if Word will repeat the first row of a table created with this formatting as a header across multiple pages.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public boolean RepeatAsHeader{ get; set; }
</pre></td></tr></table>
<p>Public Property RepeatAsHeader() As Boolean</p>

          //--- Return RepeatAsHeader
          bool repeatAsHeader = oTableFormatting.RepeatAsHeader;

          //--- Set RepeatAsHeader
          oTableFormatting.RepeatAsHeader = true;
        

          '--- Return RepeatAsHeader
          Dim repeatAsHeader As Boolean = oTableFormatting.RepeatAsHeader

          '--- Set RepeatAsHeader
          oTableFormatting.RepeatAsHeader = True