added wxArray::SetCount()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18930 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -201,6 +201,7 @@ does exactly the same as \helpref{Item()}{wxarrayitem} method.
|
||||
|
||||
\helpref{Add}{wxarrayadd}\\
|
||||
\helpref{Insert}{wxarrayinsert}\\
|
||||
\helpref{SetCount}{wxarraysetcount}\\
|
||||
\helpref{WX\_APPEND\_ARRAY}{wxappendarray}
|
||||
|
||||
\membersection{Removing items}
|
||||
@@ -590,6 +591,19 @@ array.RemoveAt(n)
|
||||
See also \helpref{WX\_CLEAR\_ARRAY}{wxcleararray} macro which deletes all
|
||||
elements of a wxArray (supposed to contain pointers).
|
||||
|
||||
\membersection{wxArray::SetCount}\label{wxarraysetcount}
|
||||
|
||||
\func{void}{SetCount}{\param{size\_t }{count}, \param{T }{defval = T($0$)}}
|
||||
|
||||
This function ensures that the number of array elements is at least
|
||||
{\it count}. If the array has already {\it count} or mroe items, nothing is
|
||||
done. Otherwise, {\tt count - GetCount()} elements are added and initialized to
|
||||
the value {\it defval}.
|
||||
|
||||
\wxheading{See also}
|
||||
|
||||
\helpref{GetCount}{wxarraygetcount}
|
||||
|
||||
\membersection{wxArray::Shrink}\label{wxarrayshrink}
|
||||
|
||||
\func{void}{Shrink}{\void}
|
||||
|
Reference in New Issue
Block a user