- Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start from
- the first property from the top, and wxBOTTOM means that the iteration will
- instead begin from bottommost valid item.
-
- <b>wxPython Note:</b> Instead of ++ operator, use Next() method, and instead of
- * operator, use GetProperty() method.
- */
- wxPropertyGridIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT, wxPGProperty* firstProp = NULL )
- {
- return wxPropertyGridIterator( m_pState, flags, firstProp );
- }
-
- wxPropertyGridConstIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT, wxPGProperty* firstProp = NULL ) const
- {
- return wxPropertyGridConstIterator( m_pState, flags, firstProp );
- }
-
- wxPropertyGridIterator GetIterator( int flags, int startPos )
- {
- return wxPropertyGridIterator( m_pState, flags, startPos );
- }
-
- wxPropertyGridConstIterator GetIterator( int flags, int startPos ) const
- {
- return wxPropertyGridConstIterator( m_pState, flags, startPos );
- }
+ Either wxTOP or wxBOTTOM. wxTOP will indicate that iterations start
+ from the first property from the top, and wxBOTTOM means that the
+ iteration will instead begin from bottommost valid item.
+
+ <b>wxPython Note:</b> Instead of ++ operator, use Next() method, and
+ instead of * operator, use GetProperty() method.
+ */
+ wxPropertyGridIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT,
+ wxPGProperty* firstProp = NULL );
+ wxPropertyGridConstIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT,
+ wxPGProperty* firstProp = NULL ) const;
+ wxPropertyGridIterator GetIterator( int flags, int startPos );
+ wxPropertyGridConstIterator GetIterator( int flags, int startPos ) const;