# GrapeCity.Documents.Text.TextLayout.Append

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*">Append Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_String_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.String)">Append(string)</h4>
<div class="markdown level1 summary"><p>Adds a text run with default formatting to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(string text)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(text As String) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">text</span></td>
      <td><p>The text to append.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[])">Append(int[])</h4>
<div class="markdown level1 summary"><p>Adds a text run with default formatting to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer()) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___System_Int32_System_Int32_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[],System.Int32,System.Int32)">Append(int[], int, int)</h4>
<div class="markdown level1 summary"><p>Adds a text run with default formatting to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints, int startIndex, int count)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer(), startIndex As Integer, count As Integer) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">startIndex</span></td>
      <td><p>Index of the first code point in the subrange.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">count</span></td>
      <td><p>Number of code points in the subrange.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_String_GrapeCity_Documents_Text_TextFormat_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.String,GrapeCity.Documents.Text.TextFormat)">Append(string, TextFormat)</h4>
<div class="markdown level1 summary"><p>Adds a text run with the specified format to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(string text, TextFormat format)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(text As String, format As TextFormat) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">text</span></td>
      <td><p>The text to append.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextFormat.html">TextFormat</a></td>
      <td><span class="parametername">format</span></td>
      <td><p>The text format to use.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___GrapeCity_Documents_Text_TextFormat_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[],GrapeCity.Documents.Text.TextFormat)">Append(int[], TextFormat)</h4>
<div class="markdown level1 summary"><p>Adds a text run with the specified format to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints, TextFormat format)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer(), format As TextFormat) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextFormat.html">TextFormat</a></td>
      <td><span class="parametername">format</span></td>
      <td><p>The text format to use.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___GrapeCity_Documents_Text_TextFormat_GrapeCity_Documents_Text_IGcTag_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[],GrapeCity.Documents.Text.TextFormat,GrapeCity.Documents.Text.IGcTag)">Append(int[], TextFormat, IGcTag)</h4>
<div class="markdown level1 summary"><p>Adds a text run with the specified format to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints, TextFormat format, IGcTag gcTag)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer(), format As TextFormat, gcTag As IGcTag) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextFormat.html">TextFormat</a></td>
      <td><span class="parametername">format</span></td>
      <td><p>The text format to use.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.IGcTag.html">IGcTag</a></td>
      <td><span class="parametername">gcTag</span></td>
      <td><p>The tag associated with the text.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___System_Int32_System_Int32_GrapeCity_Documents_Text_TextFormat_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[],System.Int32,System.Int32,GrapeCity.Documents.Text.TextFormat)">Append(int[], int, int, TextFormat)</h4>
<div class="markdown level1 summary"><p>Adds a text run with the specified format to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints, int startIndex, int count, TextFormat format)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer(), startIndex As Integer, count As Integer, format As TextFormat) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">startIndex</span></td>
      <td><p>Index of the first code point in the subrange.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">count</span></td>
      <td><p>Number of code points in the subrange.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextFormat.html">TextFormat</a></td>
      <td><span class="parametername">format</span></td>
      <td><p>The text format to use.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_System_Int32___System_Int32_System_Int32_GrapeCity_Documents_Text_TextFormat_GrapeCity_Documents_Text_IGcTag_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(System.Int32[],System.Int32,System.Int32,GrapeCity.Documents.Text.TextFormat,GrapeCity.Documents.Text.IGcTag)">Append(int[], int, int, TextFormat, IGcTag)</h4>
<div class="markdown level1 summary"><p>Adds a text run with the specified format to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TextRun Append(int[] codePoints, int startIndex, int count, TextFormat format, IGcTag gcTag)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(codePoints As Integer(), startIndex As Integer, count As Integer, format As TextFormat, gcTag As IGcTag) As TextRun</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a>[]</td>
      <td><span class="parametername">codePoints</span></td>
      <td><p>An array of UTF-32 characters (code points).</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">startIndex</span></td>
      <td><p>Index of the first code point in the subrange.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">count</span></td>
      <td><p>Number of code points in the subrange.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextFormat.html">TextFormat</a></td>
      <td><span class="parametername">format</span></td>
      <td><p>The text format to use.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.IGcTag.html">IGcTag</a></td>
      <td><span class="parametername">gcTag</span></td>
      <td><p>The tag associated with the text.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.TextRun.html">TextRun</a></td>
      <td><p>The created text run.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_GrapeCity_Documents_Text_InlineObject_System_Boolean_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(GrapeCity.Documents.Text.InlineObject,System.Boolean)">Append(InlineObject, bool)</h4>
<div class="markdown level1 summary"><p>Adds an inline object, or a copy of it, to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
<p>If adding the same inline object multiple times, make sure to pass true as the <code class="paramref">addCopy</code> parameter.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public InlineObject Append(InlineObject inlineObject, bool addCopy = true)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(inlineObject As InlineObject, Optional addCopy As Boolean = True) As InlineObject</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.InlineObject.html">InlineObject</a></td>
      <td><span class="parametername">inlineObject</span></td>
      <td><p>The inline object to add or copy.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><span class="parametername">addCopy</span></td>
      <td><p>If true, a copy of the <code class="paramref">inlineObject</code> will be created and added.
Otherwise, the passed object itself will be added.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.InlineObject.html">InlineObject</a></td>
      <td><p>The appended inline object.</p>
</td>
    </tr>
  </tbody>
</table>


<a id="GrapeCity_Documents_Text_TextLayout_Append_" data-uid="GrapeCity.Documents.Text.TextLayout.Append*"></a>
<h4 id="GrapeCity_Documents_Text_TextLayout_Append_GrapeCity_Documents_Text_AnchoredObject_System_Boolean_" data-uid="GrapeCity.Documents.Text.TextLayout.Append(GrapeCity.Documents.Text.AnchoredObject,System.Boolean)">Append(AnchoredObject, bool)</h4>
<div class="markdown level1 summary"><p>Adds an anchored object, or a copy of it, to the end of the <a class="xref" href="GrapeCity.Documents.Text.TextLayout.Inlines.html#GrapeCity_Documents_Text_TextLayout_Inlines">Inlines</a> collection.</p>
<p>If adding the same anchored object multiple times, make sure to pass true as the <code class="paramref">addCopy</code> parameter.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public AnchoredObject Append(AnchoredObject anchoredObject, bool addCopy = true)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Append(anchoredObject As AnchoredObject, Optional addCopy As Boolean = True) As AnchoredObject</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.AnchoredObject.html">AnchoredObject</a></td>
      <td><span class="parametername">anchoredObject</span></td>
      <td><p>The anchored object to add or copy.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><span class="parametername">addCopy</span></td>
      <td><p>If true, a copy of the <code class="paramref">anchoredObject</code> will be created and added.
Otherwise, the passed object itself will be added.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Text.AnchoredObject.html">AnchoredObject</a></td>
      <td><p>The appended anchored object.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
