ShowLabels
Show [Hide] column labels in Origin c. This is a very old function, the recommended function is Grid::SetShowLabels.
Show [Hide] column labels
void ShowLabels( BOOL bShow = TRUE )
void
EX1
//Set and Show column labels. void Worksheet_ShowLabels_Ex1() { WorksheetPage wp = Project.WorksheetPages(0); if(!wp) return; Worksheet wks(wp.GetName()); string strLabel = "Elapsed\n(in sec.)"; BOOL b = wks.Columns(0).SetLabel(strLabel); wks.ShowLabels(); }
Grid::SetShowLabels, Column::SetLabel, Column::GetLabel
origin.h