# GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.TryGetInt

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_TryGetInt_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.TryGetInt*">TryGetInt Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_TryGetInt_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.TryGetInt*"></a>
<h4 id="GrapeCity_Documents_Pdf_Spec_IPdfArrayExt_TryGetInt_GrapeCity_Documents_Pdf_Spec_IPdfArray_System_Int32_System_Int32__System_Boolean_" data-uid="GrapeCity.Documents.Pdf.Spec.IPdfArrayExt.TryGetInt(GrapeCity.Documents.Pdf.Spec.IPdfArray,System.Int32,System.Int32@,System.Boolean)">TryGetInt(IPdfArray, int, out int, bool)</h4>
<div class="markdown level1 summary"><p>Tries to get the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a> value at the specified index.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public static bool TryGetInt(this IPdfArray array, int index, out int value, bool addWarning = true)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Shared Function TryGetInt(array As IPdfArray, index As Integer, ByRef value As Integer, Optional addWarning As Boolean = True) As Boolean</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.int32">int</a></td>
      <td><span class="parametername">value</span></td>
      <td><p>OUT: The integer value.</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 int.</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="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><p>true if value exists and can be converted to an int; otherwise false.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
