diff -r 43e37759235e -r 51a74ef9ed63 Symbian3/SDK/Source/GUID-DE9E76F8-AE17-5962-A2BB-5006C6AB5C82.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/SDK/Source/GUID-DE9E76F8-AE17-5962-A2BB-5006C6AB5C82.dita Wed Mar 31 11:11:55 2010 +0100 @@ -0,0 +1,26 @@ + + + + + +How +to expand the arrayAn array can be expanded by using the ExpandL() function. +

ExpandL() constructs a new element at position 1 within +a CArrayFixFlat<class T> array. In this example, the new +element inserted at position 1 is a TElement type object, +constructed using the TElement default constructor. +It is essential that a default constructor exists before using this function.

+CArrayFixFlat<TElement>* fixflat; +fixflat = new (ELeave) CArrayFixFlat<TElement>(8); +... +fixflat->ExpandL(1); +

Use ExtendL() to append the newly constructed TElement at +the end of the fixflat array.

+fixflat->ExtendL(); +
\ No newline at end of file