Label
PageBase
public
string Label
Data member that contains the label text associated with the Page object.
EX1
int PageBase_Label_ex1() { WorksheetPage wp; if( wp.Create("origin", CREATE_VISIBLE_SAME) ) { wp.Label = "My Label"; wp.TitleShow = WIN_TITLE_SHOW_BOTH; printf("Worksheet '%s' has label '%s'\n", wp.GetName(), wp.Label); } else printf("Failed to create worksheet page.\n"); return 0; }
Page label.
origin.h
PageBase::TitleShow