GetShow
Get the show state of the page.
int GetShow(BOOL bRestrictCheck = FALSE)
Returns one of the following values: PAGE_NORMAL, PAGE_MINIMIZED, PAGE_MAXIMIZED, and PAGE_HIDDEN
EX1
int PageBase_GetShow_ex1() { foreach(PageBase pb in Project.Pages) { if( pb.GetShow() == PAGE_HIDDEN ) printf("%s is hidden\n", pb.GetName()); else printf("%s show state is %d\n", pb.GetName(), pb.GetShow()); } return 0; }
PageBase::SetShow
origin.h