Share via


ARRAYDESC

This structure is contained within the TYPEDESC structure and used to describe the types of the array elements and the dimensions of the array.

typedef struct _tagARRAYDESC {
  TYPEDESC tdescElem;
  unsigned short cDims;
  SAFEARRAYBOUND rgbounds[1];
} ARRAYDESC;

Members

  • tdescElem
    Element type.
  • cDims
    Dimension count.
  • rgbounds
    Variable length array containing one element for each dimension.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Oaidl.h.

See Also

Automation Structures | TYPEDESC

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.