Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Sets the array element at the specified index.
void SetAt(
INT_PTR nIndex,
ARG_TYPE newElement
);
Parameters
nIndex
An integer index that is greater than or equal to 0 and less than or equal to the value returned by GetUpperBound.ARG_TYPE
Template parameter specifying the type of arguments used for referencing array elements.newElement
The new element value to be stored at the specified position.
Remarks
SetAt will not cause the array to grow. Use SetAtGrow if you want the array to grow automatically.
You must ensure that your index value represents a valid position in the array. If it is out of bounds, then the Debug version of the library asserts.
Example
See the example for GetAt.
Requirements
Header: afxtempl.h