Читать книгу Excel 2019 Power Programming with VBA - Michael Alexander, Dick Kusleika - Страница 171
Declaring arrays
ОглавлениеYou declare an array with a Dim
or Public
statement, just as you declare a regular variable. You can also specify the number of elements in the array. You do so by specifying the first index number, the keyword To
, and the last index number—all inside parentheses. For example, here's how to declare an array comprising exactly 100 integers:
Dim MyArray(1 To 100) As Integer