# C1.C1Preview.ParagraphObjectCollection.AddText

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*">AddText Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String)">AddText(string)</h4>
<div class="markdown level1 summary"><p>Adds a text string to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String) As ParagraphText</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 string to add.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_C1_C1Preview_Style_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,C1.C1Preview.Style)">AddText(string, Style)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified style to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Style style)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, style As Style) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.C1Preview.Style.html">Style</a></td>
      <td><span class="parametername">style</span></td>
      <td><p>The style to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_C1_C1Preview_Style__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text and style, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Font)">AddText(string, Font)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified font to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Font font)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, font As Font) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.font">Font</a></td>
      <td><span class="parametername">font</span></td>
      <td><p>The font to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text and font, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Color_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Color)">AddText(string, Color)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified text color to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Color textColor)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, textColor As Color) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">textColor</span></td>
      <td><p>The text color to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Color__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text and text color, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_C1_C1Preview_TextPositionEnum_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,C1.C1Preview.TextPositionEnum)">AddText(string, TextPositionEnum)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified text position to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, TextPositionEnum textPosition)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, textPosition As TextPositionEnum) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.C1Preview.TextPositionEnum.html">TextPositionEnum</a></td>
      <td><span class="parametername">textPosition</span></td>
      <td><p>The text position to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_C1_C1Preview_TextPositionEnum__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text and text position, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_System_Drawing_Color_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Font,System.Drawing.Color)">AddText(string, Font, Color)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified font and text color to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Font font, Color textColor)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, font As Font, textColor As Color) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.font">Font</a></td>
      <td><span class="parametername">font</span></td>
      <td><p>The font to use to render the string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">textColor</span></td>
      <td><p>The text color to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_System_Drawing_Color__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text, font and text color, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_C1_C1Preview_TextPositionEnum_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Font,C1.C1Preview.TextPositionEnum)">AddText(string, Font, TextPositionEnum)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified font and text position to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Font font, TextPositionEnum textPosition)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, font As Font, textPosition As TextPositionEnum) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.font">Font</a></td>
      <td><span class="parametername">font</span></td>
      <td><p>The font to use to render the string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.C1Preview.TextPositionEnum.html">TextPositionEnum</a></td>
      <td><span class="parametername">textPosition</span></td>
      <td><p>The text position to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_C1_C1Preview_TextPositionEnum__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text, font and text position, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Color_C1_C1Preview_TextPositionEnum_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Color,C1.C1Preview.TextPositionEnum)">AddText(string, Color, TextPositionEnum)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified text color and position to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Color textColor, TextPositionEnum textPosition)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, textColor As Color, textPosition As TextPositionEnum) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">textColor</span></td>
      <td><p>The text color to use to render the string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.C1Preview.TextPositionEnum.html">TextPositionEnum</a></td>
      <td><span class="parametername">textPosition</span></td>
      <td><p>The text position to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Color_C1_C1Preview_TextPositionEnum__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text, text color and position, and adds it
to the current collection.</p>
</div>


<a id="C1_C1Preview_ParagraphObjectCollection_AddText_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText*"></a>
<h4 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_System_Drawing_Color_C1_C1Preview_TextPositionEnum_" data-uid="C1.C1Preview.ParagraphObjectCollection.AddText(System.String,System.Drawing.Font,System.Drawing.Color,C1.C1Preview.TextPositionEnum)">AddText(string, Font, Color, TextPositionEnum)</h4>
<div class="markdown level1 summary"><p>Adds a text string with the specified font, text color and position to the current paragraph content.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public ParagraphText AddText(string text, Font font, Color textColor, TextPositionEnum textPosition)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function AddText(text As String, font As Font, textColor As Color, textPosition As TextPositionEnum) As ParagraphText</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 string to add.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.font">Font</a></td>
      <td><span class="parametername">font</span></td>
      <td><p>The font to use to render the string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><span class="parametername">textColor</span></td>
      <td><p>The text color to use to render the string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.C1Preview.TextPositionEnum.html">TextPositionEnum</a></td>
      <td><span class="parametername">textPosition</span></td>
      <td><p>The text position to use to render the string.</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="C1.C1Preview.ParagraphText.html">ParagraphText</a></td>
      <td><p>A <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a> object representing the specified text string.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_ParagraphObjectCollection_AddText_System_String_System_Drawing_Font_System_Drawing_Color_C1_C1Preview_TextPositionEnum__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This method creates a <a class="xref" href="C1.C1Preview.ParagraphText.html">ParagraphText</a>,
initializes it with the specified text, font, text color and position, and adds it
to the current collection.</p>
</div>
</div>
