-void wxPropertyGridManager::SetPropertyAttributeAll( const wxString& attrName, wxVariant value )
-{
- size_t i;
- for ( i=0; i<GetPageCount(); i++ )
- {
- wxPropertyGridPage* page = (wxPropertyGridPage*)m_arrPages.Item(i);
-
- DoSetPropertyAttribute(page->GetStatePtr()->m_properties, attrName, value, wxPG_RECURSE);
- }
-}
-
-// -----------------------------------------------------------------------
-