Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/lib/Array.htm
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h2 id="toc">Table of Contents</h2>
<li><a href="#Properties">Properties</a>:
<ul>
<li><a href="#Length">Length</a>: Gets or sets the length of an array.</li>
<li><a href="#Capacity">Capacity</a>: Gets or sets the current capacity of an array.</li>
<li><a href="#Capacity">Capacity</a>: Gets or sets the current allocated memory capacity of an array.</li>
<li><a href="#Default">Default</a>: Sets the default value returned when an element with no value is requested.</li>
<li><a href="#__Item">__Item</a>: Gets or sets the value of an array element.</li>
</ul>
Expand Down Expand Up @@ -245,7 +245,7 @@ <h2 id="Properties">Properties</h2>
</div>

<div class="methodShort" id="Capacity"><h3>Capacity</h3>
<p>Gets or sets the current capacity of an array.</p>
<p>Gets or sets the current allocated memory capacity of an array.</p>
<pre class="Syntax">MaxItems := ArrayObj.<span class="func">Capacity</span></pre>
<pre class="Syntax">ArrayObj.<span class="func">Capacity</span> := MaxItems</pre>
<p><em>MaxItems</em> is an <a href="../Concepts.htm#numbers">integer</a> representing the maximum number of elements the array should be able to contain before it must be automatically expanded. If setting a value less than <a href="#Length">Length</a>, elements are removed.</p>
Expand Down