IKO_TColStd_Array1 Interface
Common type independent attributes of a one-dimentional array. This interface is
normaly queried form a more specific array like
array of points
IKO_Standard_Object to create a copy or obtain type name
- Create
- Length
- Lower
- Upper
HRESULT Create(int lower, int upper)
(Re-)Allocates the array with index in the (lower, upper) range
HRESULT Assign(IKO_TColStd_Array1* arr)
- Remarks:
Copies arr into this
HRESULT Length(int* upper)
- Returns length of the array
HRESULT Lower(int* lower)
Returns lower index
HRESULT Upper(int* upper)
- Remarks:
Returns upper index
|