Added wxPGProperty::SetDefaultValue(v), as a shortcut for SetAttribute(DefaultValue, v)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2009-05-31 08:58:38 +00:00
parent e1983cad7c
commit 0ce8e27f68
5 changed files with 26 additions and 1 deletions

View File

@@ -1341,6 +1341,14 @@ public:
*/
void SetChoiceSelection( int newValue );
/** Set default value of a property. Synonymous to
@code
SetAttribute("DefaultValue", value);
@endcode
*/
void SetDefaultValue( wxVariant& value );
/**
Sets property's help string, which is shown, for example, in
wxPropertyGridManager's description text box.