# C1.C1Preview.RenderIndex

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_C1Preview_RenderIndex" data-uid="C1.C1Preview.RenderIndex" class="text-break">RenderIndex Class
</h1>
  <div class="markdown level0 summary"><p>Represents an alphabetical, optionally multi-level, word index in a <a class="xref" href="C1.C1Preview.C1PrintDocument.html">C1PrintDocument</a>.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="C1.C1Preview.RenderObject.html">RenderObject</a></div>
    <div class="level2"><a class="xref" href="C1.C1Preview.RenderArea.html">RenderArea</a></div>
    <div class="level3"><span class="xref">RenderIndex</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="C1.C1Preview.IStyleOwner.html">IStyleOwner</a></div>
    <div><a class="xref" href="C1.C1Preview.IDocumentLocation.html">IDocumentLocation</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.C1Preview.html">C1.C1Preview</a></h6>
  <h6><strong>Assembly</strong>: C1.PrintDocument.4.8.dll</h6>
  <h5 id="C1_C1Preview_RenderIndex_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[C1ClassSerialization(true)]
public class RenderIndex : RenderArea, IStyleOwner, IDocumentLocation</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;C1ClassSerialization(True)&gt;
Public Class RenderIndex
    Inherits RenderArea
    Implements IStyleOwner, IDocumentLocation</code></pre>
  </div>
  <h5 id="C1_C1Preview_RenderIndex_remarks"><strong>Remarks</strong></h5>
  <div class="markdown level0 remarks"><p>To create an index, follow these steps:</p>
<ul><li>
Create an instance of the <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> class, store it in a local variable.
</li><li>
For each index entry, create an instance of the <a class="xref" href="C1.C1Preview.IndexEntry.html">IndexEntry</a> class.
</li><li>
For each occurrence of each index entry in the document, create an instance of the <a class="xref" href="C1.C1Preview.IndexEntryOccurrence.html">IndexEntryOccurrence</a> class,
and set the <a class="xref" href="C1.C1Preview.IndexEntryOccurrence.Target.html#C1_C1Preview_IndexEntryOccurrence_Target">Target</a> on it to point to the location of that occurrence in the document.
</li><li>
After all occurrences have been added to their entries, and all entries have been added to the <a class="xref" href="C1.C1Preview.RenderIndex.Entries.html#C1_C1Preview_RenderIndex_Entries">Entries</a>,
add the <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> object created in the first step, to the document. When the document generates, that object will create
the alphabetically sorted word index with clickable page numbers.
</li></ul>
</div>
  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_C1Preview_RenderIndex__ctor" data-uid="C1.C1Preview.RenderIndex.#ctor">
          <a class="xref" href="C1.C1Preview.RenderIndex.-ctor.html#C1_C1Preview_RenderIndex__ctor">RenderIndex()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> class.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_C1Preview_RenderIndex_Entries" data-uid="C1.C1Preview.RenderIndex.Entries">
          <a class="xref" href="C1.C1Preview.RenderIndex.Entries.html#C1_C1Preview_RenderIndex_Entries">Entries</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the collection of entries (elements of type <a class="xref" href="C1.C1Preview.IndexEntry.html">IndexEntry</a>)
at the top level of the current index.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_EntryHangingIndent" data-uid="C1.C1Preview.RenderIndex.EntryHangingIndent">
          <a class="xref" href="C1.C1Preview.RenderIndex.EntryHangingIndent.html#C1_C1Preview_RenderIndex_EntryHangingIndent">EntryHangingIndent</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the hanging indent of the first line of an entry's paragraph
relative to the following lines (used if the list of occurrences and
cross-references for the entry is too long to fit on a single line).</p>
<p>The default is 1/8 of an inch.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_EntryIndent" data-uid="C1.C1Preview.RenderIndex.EntryIndent">
          <a class="xref" href="C1.C1Preview.RenderIndex.EntryIndent.html#C1_C1Preview_RenderIndex_EntryIndent">EntryIndent</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the indent of sub-entries relative to the main index entry.</p>
<p>The default is 1/4 of an inch.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_EntrySplitBehavior" data-uid="C1.C1Preview.RenderIndex.EntrySplitBehavior">
          <a class="xref" href="C1.C1Preview.RenderIndex.EntrySplitBehavior.html#C1_C1Preview_RenderIndex_EntrySplitBehavior">EntrySplitBehavior</a>
        </td>
        <td class="markdown level1 summary"><p>Determines how a single entry can split vertically.
This property applies to entries at all levels.</p>
<p>The default is <a class="xref" href="C1.C1Preview.SplitBehaviorEnum.html#C1_C1Preview_SplitBehaviorEnum_SplitIfLarge">SplitIfLarge</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_EntryStyle" data-uid="C1.C1Preview.RenderIndex.EntryStyle">
          <a class="xref" href="C1.C1Preview.RenderIndex.EntryStyle.html#C1_C1Preview_RenderIndex_EntryStyle">EntryStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the style of index entries at the top level.
This is a shortcut to the first (with index 0)
element of the <a class="xref" href="C1.C1Preview.RenderIndex.EntryStyles.html#C1_C1Preview_RenderIndex_EntryStyles">EntryStyles</a> collection.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_EntryStyles" data-uid="C1.C1Preview.RenderIndex.EntryStyles">
          <a class="xref" href="C1.C1Preview.RenderIndex.EntryStyles.html#C1_C1Preview_RenderIndex_EntryStyles">EntryStyles</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.C1Preview.IndexEntryStyles.html">IndexEntryStyles</a> collection containing the styles
used to render entries of the current <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> at different levels.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_FillChar" data-uid="C1.C1Preview.RenderIndex.FillChar">
          <a class="xref" href="C1.C1Preview.RenderIndex.FillChar.html#C1_C1Preview_RenderIndex_FillChar">FillChar</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a character used to fill the empty space between
an index entry's <a class="xref" href="C1.C1Preview.IndexEntry.Caption.html#C1_C1Preview_IndexEntry_Caption">Caption</a> and the page number or numbers
referencing the occurrences of that entry.
This property is only used if <a class="xref" href="C1.C1Preview.RenderIndex.PageNumbersAtRight.html#C1_C1Preview_RenderIndex_PageNumbersAtRight">PageNumbersAtRight</a>
on the current <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> has been set to <b>true</b>.</p>
<p>The default is a dot (<b>'.'</b>).</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_HasEntries" data-uid="C1.C1Preview.RenderIndex.HasEntries">
          <a class="xref" href="C1.C1Preview.RenderIndex.HasEntries.html#C1_C1Preview_RenderIndex_HasEntries">HasEntries</a>
        </td>
        <td class="markdown level1 summary"><p>Gets a value indicating whether the <a class="xref" href="C1.C1Preview.RenderIndex.Entries.html#C1_C1Preview_RenderIndex_Entries">Entries</a> collection
has been created and contains one or more elements.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_HeadingStyle" data-uid="C1.C1Preview.RenderIndex.HeadingStyle">
          <a class="xref" href="C1.C1Preview.RenderIndex.HeadingStyle.html#C1_C1Preview_RenderIndex_HeadingStyle">HeadingStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.C1Preview.Style.html">Style</a> used for letter headings
generated by the current index.
(A heading is a letter preceding the group of entries beginning with that letter.)</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_LetterFormat" data-uid="C1.C1Preview.RenderIndex.LetterFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.LetterFormat.html#C1_C1Preview_RenderIndex_LetterFormat">LetterFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a string used to format the letter group headings.</p>
<p>The default is <b>"{0}"</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_LetterSplitBehavior" data-uid="C1.C1Preview.RenderIndex.LetterSplitBehavior">
          <a class="xref" href="C1.C1Preview.RenderIndex.LetterSplitBehavior.html#C1_C1Preview_RenderIndex_LetterSplitBehavior">LetterSplitBehavior</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a <a class="xref" href="C1.C1Preview.SplitBehaviorEnum.html">SplitBehaviorEnum</a> that determines how a letter group
(entries starting with the same letter) can split vertically.
The default is <a class="xref" href="C1.C1Preview.SplitBehaviorEnum.html#C1_C1Preview_SplitBehaviorEnum_SplitIfNeeded">SplitIfNeeded</a>.
Note that headings (represented by their letters by default)
are always printed together with their first entry</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_OccurrenceDelimiter" data-uid="C1.C1Preview.RenderIndex.OccurrenceDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.OccurrenceDelimiter.html#C1_C1Preview_RenderIndex_OccurrenceDelimiter">OccurrenceDelimiter</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a string used to delimit the occurrences (page numbers)
of an index entry in the generated index.</p>
<p>The default is <b>", "</b> (comma followed by space).</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_PageNumbersAtRight" data-uid="C1.C1Preview.RenderIndex.PageNumbersAtRight">
          <a class="xref" href="C1.C1Preview.RenderIndex.PageNumbersAtRight.html#C1_C1Preview_RenderIndex_PageNumbersAtRight">PageNumbersAtRight</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether page numbers in the generated index
should be right-aligned.</p>
<p>The default is <b>false</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_PageRangeFormat" data-uid="C1.C1Preview.RenderIndex.PageRangeFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.PageRangeFormat.html#C1_C1Preview_RenderIndex_PageRangeFormat">PageRangeFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a format string used to format the page ranges of occurrences
of index entries in the generated index.</p>
<p>The default is <b>"{0}-{1}"</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_RunIn" data-uid="C1.C1Preview.RenderIndex.RunIn">
          <a class="xref" href="C1.C1Preview.RenderIndex.RunIn.html#C1_C1Preview_RenderIndex_RunIn">RunIn</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether that sub-entries
should appear inline with the main heading rather than on separate indented lines.</p>
<p>The default is <b>false</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_RunInDelimiter" data-uid="C1.C1Preview.RenderIndex.RunInDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.RunInDelimiter.html#C1_C1Preview_RenderIndex_RunInDelimiter">RunInDelimiter</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a string used to delimit entries when a run-in (see <a class="xref" href="C1.C1Preview.RenderIndex.RunIn.html#C1_C1Preview_RenderIndex_RunIn">RunIn</a>)
index is generated by the current <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a>.</p>
<p>The default is <b>";"</b> (semicolon).</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_SeeAlsoFormat" data-uid="C1.C1Preview.RenderIndex.SeeAlsoFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.SeeAlsoFormat.html#C1_C1Preview_RenderIndex_SeeAlsoFormat">SeeAlsoFormat</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a format string used to format the &quot;See also&quot;
cross-references in the generated index.</p>
<p>The default is <b>"(see {0})"</b>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_SeeAlsoStyle" data-uid="C1.C1Preview.RenderIndex.SeeAlsoStyle">
          <a class="xref" href="C1.C1Preview.RenderIndex.SeeAlsoStyle.html#C1_C1Preview_RenderIndex_SeeAlsoStyle">SeeAlsoStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.C1Preview.Style.html">Style</a> of the <b>&quot;See (...)&quot;</b> text
used to list cross-references between entries of the current <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a>.</p>
<p>
Note that this style is only applied to the static text of the <a class="xref" href="C1.C1Preview.RenderIndex.SeeAlsoFormat.html#C1_C1Preview_RenderIndex_SeeAlsoFormat">SeeAlsoFormat</a>
format string, but not to the entries' list output by that format.
</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_TermDelimiter" data-uid="C1.C1Preview.RenderIndex.TermDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.TermDelimiter.html#C1_C1Preview_RenderIndex_TermDelimiter">TermDelimiter</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a string used to delimit an index entry
and the list of that entry's occurrences (page numbers) in the generated index.</p>
<p>The default is <b>", "</b> (comma followed by space).</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_C1Preview_RenderIndex_AssignFrom_C1_C1Preview_RenderObject_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_" data-uid="C1.C1Preview.RenderIndex.AssignFrom(C1.C1Preview.RenderObject,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
          <a class="xref" href="C1.C1Preview.RenderIndex.AssignFrom.html#C1_C1Preview_RenderIndex_AssignFrom_C1_C1Preview_RenderObject_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_">AssignFrom(RenderObject, bool, bool, bool, bool, bool, bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Assigns (copies) properties from another <a class="xref" href="C1.C1Preview.RenderObject.html">RenderObject</a> to the current object.
Calls the base <a class="xref" href="C1.C1Preview.RenderArea.AssignFrom.html#C1_C1Preview_RenderArea_AssignFrom_C1_C1Preview_RenderObject_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_System_Boolean_">AssignFrom(RenderObject, bool, bool, bool, bool, bool, bool)</a> method.
If <code class="paramref">source</code> is a <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a>, also copies <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a>-specific properties.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_CreateSame" data-uid="C1.C1Preview.RenderIndex.CreateSame">
          <a class="xref" href="C1.C1Preview.RenderIndex.CreateSame.html#C1_C1Preview_RenderIndex_CreateSame">CreateSame()</a>
        </td>
        <td class="markdown level1 summary"><p>Creates new empty <a class="xref" href="C1.C1Preview.RenderArea.html">RenderArea</a> object
linked with same <a class="xref" href="C1.C1Preview.C1PrintDocument.html">C1PrintDocument</a> as current object.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_InitRenderObject" data-uid="C1.C1Preview.RenderIndex.InitRenderObject">
          <a class="xref" href="C1.C1Preview.RenderIndex.InitRenderObject.html#C1_C1Preview_RenderIndex_InitRenderObject">InitRenderObject()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes the current <a class="xref" href="C1.C1Preview.RenderIndex.html">RenderIndex</a> object.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeEntryHangingIndent" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeEntryHangingIndent">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeEntryHangingIndent.html#C1_C1Preview_RenderIndex_ShouldSerializeEntryHangingIndent">ShouldSerializeEntryHangingIndent()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.EntryHangingIndent.html#C1_C1Preview_RenderIndex_EntryHangingIndent">EntryHangingIndent</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeEntryIndent" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeEntryIndent">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeEntryIndent.html#C1_C1Preview_RenderIndex_ShouldSerializeEntryIndent">ShouldSerializeEntryIndent()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.EntryIndent.html#C1_C1Preview_RenderIndex_EntryIndent">EntryIndent</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeHeadingStyle" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeHeadingStyle">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeHeadingStyle.html#C1_C1Preview_RenderIndex_ShouldSerializeHeadingStyle">ShouldSerializeHeadingStyle()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.HeadingStyle.html#C1_C1Preview_RenderIndex_HeadingStyle">HeadingStyle</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeLetterFormat" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeLetterFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeLetterFormat.html#C1_C1Preview_RenderIndex_ShouldSerializeLetterFormat">ShouldSerializeLetterFormat()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.LetterFormat.html#C1_C1Preview_RenderIndex_LetterFormat">LetterFormat</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeOccurrenceDelimiter" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeOccurrenceDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeOccurrenceDelimiter.html#C1_C1Preview_RenderIndex_ShouldSerializeOccurrenceDelimiter">ShouldSerializeOccurrenceDelimiter()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.OccurrenceDelimiter.html#C1_C1Preview_RenderIndex_OccurrenceDelimiter">OccurrenceDelimiter</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializePageRangeFormat" data-uid="C1.C1Preview.RenderIndex.ShouldSerializePageRangeFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializePageRangeFormat.html#C1_C1Preview_RenderIndex_ShouldSerializePageRangeFormat">ShouldSerializePageRangeFormat()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.PageRangeFormat.html#C1_C1Preview_RenderIndex_PageRangeFormat">PageRangeFormat</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeRunInDelimiter" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeRunInDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeRunInDelimiter.html#C1_C1Preview_RenderIndex_ShouldSerializeRunInDelimiter">ShouldSerializeRunInDelimiter()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.RunInDelimiter.html#C1_C1Preview_RenderIndex_RunInDelimiter">RunInDelimiter</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeSeeAlsoFormat" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeSeeAlsoFormat">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeSeeAlsoFormat.html#C1_C1Preview_RenderIndex_ShouldSerializeSeeAlsoFormat">ShouldSerializeSeeAlsoFormat()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.SeeAlsoFormat.html#C1_C1Preview_RenderIndex_SeeAlsoFormat">SeeAlsoFormat</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeSeeAlsoStyle" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeSeeAlsoStyle">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeSeeAlsoStyle.html#C1_C1Preview_RenderIndex_ShouldSerializeSeeAlsoStyle">ShouldSerializeSeeAlsoStyle()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.SeeAlsoStyle.html#C1_C1Preview_RenderIndex_SeeAlsoStyle">SeeAlsoStyle</a> property should be serialized.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_RenderIndex_ShouldSerializeTermDelimiter" data-uid="C1.C1Preview.RenderIndex.ShouldSerializeTermDelimiter">
          <a class="xref" href="C1.C1Preview.RenderIndex.ShouldSerializeTermDelimiter.html#C1_C1Preview_RenderIndex_ShouldSerializeTermDelimiter">ShouldSerializeTermDelimiter()</a>
        </td>
        <td class="markdown level1 summary"><p>Tests whether the <a class="xref" href="C1.C1Preview.RenderIndex.TermDelimiter.html#C1_C1Preview_RenderIndex_TermDelimiter">TermDelimiter</a> property should be serialized.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="seealso">See Also</h3>
  <div class="seealso">
      <div><a class="xref" href="C1.C1Preview.IndexEntry.html">IndexEntry</a></div>
      <div><a class="xref" href="C1.C1Preview.IndexEntryOccurrence.html">IndexEntryOccurrence</a></div>
      <div><a class="xref" href="C1.C1Preview.IndexEntryCollection.html">IndexEntryCollection</a></div>
      <div><a class="xref" href="C1.C1Preview.IndexEntryStyles.html">IndexEntryStyles</a></div>
      <div><a class="xref" href="C1.C1Preview.C1LinkTarget.html">C1LinkTarget</a></div>
  </div>

</div>
