Represents the bounds of one dimension of the array. The lower bound of the dimension is represented by lLbound
, and cElements
represents the number of elements in the dimension. The structure is defined as follows:
typedef struct tagSAFEARRAYBOUND {
unsigned long cElements;
long lLbound;
} SAFEARRAYBOUND;