以下是该方法的基本语法:
BOOL IsEnabled() const;
使用方法可能如下所示:
CMFCPropertyGridProperty* pProperty = new CMFCPropertyGridProperty(_T("My Property"), COleVariant((short)0), _T("This is a property"));
BOOL bIsEnabled = pProperty->IsEnabled();
// 现在 bIsEnabled 将包含属性是否启用的信息
该方法是 const 成员函数,因此可以在常量对象上调用,不会修改对象的状态。
转载请注明出处:http://www.zyzy.cn/article/detail/19520/MFC/CMFCPropertyGridProperty