SafeArrayRedim function (oleauto.h)
Changes the right-most (least significant) bound of the specified safe array.
Syntax
HRESULT SafeArrayRedim(
[in, out] SAFEARRAY *psa,
[in] SAFEARRAYBOUND *psaboundNew
);
Parameters
[in, out] psa
A safe array descriptor.
[in] psaboundNew
A new safe array bound structure that contains the new array boundary. You can change only the least significant dimension of an array.
Return value
This function can return one of these values.
Return code | Description |
---|---|
|
Success. |
|
The argument psa is not valid. |
|
The array is locked. |
Remarks
If you reduce the bound of an array, SafeArrayRedim deallocates the array elements outside the new array boundary. If the bound of an array is increased, SafeArrayRedim allocates and initializes the new array elements. The data is preserved for elements that exist in both the old and new array.
Requirements
Requirement | Value |
---|---|
Target Platform | Windows |
Header | oleauto.h |
Library | OleAut32.lib |
DLL | OleAut32.dll |