Syntax
Public Sub ArrayFree(ary() As Variant)
Description
This sub procedure isused to erase agivenarray especially if you are using dynamic arrays.
Parameters
Key | Description |
ary | Array to erase, value of type variant. |
Return value
No returned value.
Sample
Public Sub main () Dim Arr CopyHigh 0, 10, 20, Arr ArrayFree Arr End sub
See Also