User`s guide
D Utility Library
D-26
Property NumRows As Long
Stores the row dimension for the array. The value of NumRows must be
nonnegative. If the value is zero, the row index is taken from the maximum of
the values in the
RowIndex array.
Property NumColumns As Long
Stores the column dimension for the array. The value of NumColumns must be
nonnegative. If the value is zero, the row index is taken from the maximum of
the values in the
ColumnIndex array.
Property RowIndex As Variant
Stores the array of row indices of the nonzero elements of the array. The value
of this property can be any type coercible to a
Variant, as well as object types,
with the restriction that the underlying array must resolve to or be coercible to
a numeric matrix of type
Long. If the value of NumRows is nonzero and any row
index is greater than
NumRows, a bad-index error occurs. An error also results
if the number of elements in the
RowIndex array does not match the number of
elements in the
Array property’s underlying array.
Property ColumnIndex As Variant
Stores the array of column indices of the nonzero elements of the array. The
value of this property can be any type coercible to a
Variant, as well as object
types, with the restriction that the underlying array must resolve to or be
coercible to a numeric matrix of type
Long. If the value of NumColumns is
nonzero and any column index is greater than
NumColumns, a bad-index error
occurs. An error also results if the number of elements in the
ColumnIndex
array does not match the number of elements in the
Array property’s
underlying array.
Property Array As Variant
Stores the nonzero array values of the sparse array. The value of this property
can be any type coercible to a
Variant, as well as object types, with the
restriction that the underlying array must resolve to or be coercible to a
numeric matrix of type
Double or Boolean.
Property MWFlags As MWFlags
Stores a reference to an MWFlags object. This property sets or gets the array
formatting and data conversion flags for a particular sparse array. Each