GetDimensionCount method
- Last UpdatedJul 23, 2024
- 1 minute read
Indicates whether the MxValue holds an array. MxValue holds an array if PutElement has been called on it and there have been no subsequent calls to Empty or PutXxx (where Xxx is an Integer, Boolean or any of the other data type).
Class
IMxValue
Syntax
[C#]
void GetDimensionCount(
out short nDimensions
);
[Visual C++]
HRESULT GetDimensionCount(
[out] short *nDimensions
);
Parameters
nDimensions
Returns 1 if the MxValue is an array or 0 if MxValue does not hold an array.