GetName
Get the name of a Page object by argument.
BOOL GetName( string & strName )
Returns TRUE for success or FALSE for failure.
EX1
//Get the name of current active page void PageBase_GetName_ex1() { PageBase pb; pb = Project.Pages(); // Get the project's active page string strName; if( pb.GetName(strName) )//Get the name of the page printf("Active page is named %s\n", strName); else printf("Failed to get page name\n"); }
PageBase::Rename, PageBase::GetFolder
origin.h