배열의 요소를 지웁니다.
구문
Erase arrayName
인수:
arrayName 인수는 지울 배열 변수의 이름입니다.
주석
Erase 명령문은 배열의 값을 지웁니다.
다음 예는 Erase 명령문의 사용을 보여줍니다.
예 1:
Dim NumArray NumArray = Array(1,2,3) Erase NumArray ' Each element value is erased.
Scripting on this page enhances content navigation, but does not change the content in any way.