- const wxPropertyGrid* GetGrid() const
- {
- wxASSERT(m_pPropGrid);
- return (const wxPropertyGrid*)m_pPropGrid;
- };
-
- /** Returns iterator class instance.
- @remarks
- Calling this method in wxPropertyGridManager causes run-time assertion failure.
- Please only iterate through individual pages or use CreateVIterator().
- */
- wxPropertyGridIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT, wxPGProperty* firstProp = NULL )
- {
- wxFAIL_MSG(wxT("Please only iterate through individual pages or use CreateVIterator()"));
- return wxPropertyGridInterface::GetIterator( flags, firstProp );
- }
-
- wxPropertyGridConstIterator GetIterator( int flags = wxPG_ITERATE_DEFAULT, wxPGProperty* firstProp = NULL ) const
- {
- wxFAIL_MSG(wxT("Please only iterate through individual pages or use CreateVIterator()"));
- return wxPropertyGridInterface::GetIterator( flags, firstProp );
- }
-
- /** Returns iterator class instance.
- @remarks
- Calling this method in wxPropertyGridManager causes run-time assertion failure.
- Please only iterate through individual pages or use CreateVIterator().
- */
- wxPropertyGridIterator GetIterator( int flags, int startPos )
- {
- wxFAIL_MSG(wxT("Please only iterate through individual pages or use CreateVIterator()"));
- return wxPropertyGridInterface::GetIterator( flags, startPos );
- }
-
- wxPropertyGridConstIterator GetIterator( int flags, int startPos ) const
- {
- wxFAIL_MSG(wxT("Please only iterate through individual pages or use CreateVIterator()"));
- return wxPropertyGridInterface::GetIterator( flags, startPos );
- }
-
- /** Similar to GetIterator, but instead returns wxPGVIterator instance,