以下是 GetPageCount 方法的典型原型:
int GetPageCount() const;
调用此方法将返回 CPropertySheet 对象中包含的属性页的总数。
例如,如果你有一个 CPropertySheet 对象的实例名为 myPropertySheet,你可以这样使用 GetPageCount 方法:
int pageCount = myPropertySheet.GetPageCount();
现在,pageCount 将包含 myPropertySheet 对象中属性页的总数。
这个方法通常在需要知道属性页总数的情况下使用,比如在循环中遍历所有属性页或者进行其他操作时。
转载请注明出处:http://www.zyzy.cn/article/detail/21853/MFC/CPropertySheet