VBA - Función de borrado
La función de borrado se utiliza para restablecer los valores de matrices de tamaño fijo y liberar la memoria de las matrices dinámicas. Se comporta según el tipo de matrices.
Sintaxis
Erase ArrayName
- Matriz numérica fija, cada elemento de una matriz se restablece a cero.
- Matriz de cadenas fija, cada elemento de una matriz se restablece a la longitud cero "".
- Matriz de objetos, cada elemento de una matriz se restablece a un valor especial Nothing.
Ejemplo
Agregue un botón y agregue la siguiente función.
Private Sub Constant_demo_Click()
Dim NumArray(3)
NumArray(0) = "VBScript"
NumArray(1) = 1.05
NumArray(2) = 25
NumArray(3) = #23/04/2013#
Dim DynamicArray()
ReDim DynamicArray(9) ' Allocate storage space.
Erase NumArray ' Each element is reinitialized.
Erase DynamicArray ' Free memory used by array.
' All values would be erased.
msgbox("The value at Zeroth index of NumArray is " & NumArray(0))
msgbox("The value at First index of NumArray is " & NumArray(1))
msgbox("The value at Second index of NumArray is " & NumArray(2))
msgbox("The value at Third index of NumArray is " & NumArray(3))
End Sub
Cuando ejecuta la función anterior, produce la siguiente salida.
The value at Zeroth index of NumArray is
The value at First index of NumArray is
The value at Second index of NumArray is
The value at Third index of NumArray is