Erase Statement

Elimina el contenido de elementos matriciales de las matrices de tamaño fijo; libera la memoria que utilizan las matrices de tamaño variable.

Sintaxis:

Erase syntax

Erase array1 [, array2 [,...]]

Parámetros:

array list - A comma delimited list of arrays to be erased.

Ejemplo:

Sub Erase_Example
    a = Array(1,2,3) :  b= Array("z","y","x") : c=Array(a,b)
    Erase a, c(Ubound(c)) ' b and c(0) are unchanged
    Erase b, c(0) ' everything gets cleared
End Sub

Dim or ReDim statements

Array or DimArray functions

Lbound and Ubound functions

¡Necesitamos su ayuda!