# GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.Get

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_Get_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.Get*">Get Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_Get_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.Get*"></a>
<h4 id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_Get__1_GrapeCity_Documents_Pdf_Spec_IPdfArray_System_Int32_System_Boolean_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.Get``1(GrapeCity.Documents.Pdf.Spec.IPdfArray,System.Int32,System.Boolean)">Get&lt;T&gt;(IPdfArray, int, bool)</h4>
<div class="markdown level1 summary"><p>Gets the value at the specified index,
returns a null if the value cannot be converted to a <code class="typeparamref">T</code>.
Note! This method returns <a class="xref" href="GrapeCity.Documents.Pdf.Spec.IPdfRef.html">IPdfRef</a> if <code class="typeparamref">T</code> is <a class="xref" href="GrapeCity.Documents.Pdf.Spec.IPdfRef.html">IPdfRef</a>,
otherwise the method resolves the reference and returns <em>actual</em> object.
Use <a class="xref" href="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.GetItem.html#GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_GetItem_GrapeCity_Documents_Pdf_Spec_IPdfArray_System_Int32_">GetItem(IPdfArray, int)</a> method if you want to return &quot;raw&quot; value
without any post-processing.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static T Get&lt;T&gt;(this IPdfArray array, int index, bool addWarning = true) where T : IPdfObject</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function [Get](Of T As IPdfObject)(array As IPdfArray, index As Integer, Optional addWarning As Boolean = True) As T</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.Pdf.Spec.IPdfArray.html">IPdfArray</a></td>
      <td><span class="parametername">array</span></td>
      <td><p>The current array.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">index</span></td>
      <td><p>The index of the value to get.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><span class="parametername">addWarning</span></td>
      <td><p>Indicates whether to add a warning to <span class="xref">GrapeCity.Documents.Pdf.GcPdfDocument.ParserLog</span>
if value at the specified index can't be converted to the <code class="typeparamref">T</code>.</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><span class="xref">T</span></td>
      <td><p>The value with the specified index.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><span class="parametername">T</span></td>
      <td></td>
    </tr>
  </tbody>
</table>
</div>
