SetUserDefinedLabelNames
to add user defined labels and name by argument arr.
BOOL SetUserDefinedLabelNames( const StringArray & arr, BOOL bCol = TRUE )
TRUE if success else FALSE.
EX1
void Grid_SetUserDefinedLabelNames_ex1() { Worksheet wks = Project.ActiveLayer(); if(wks) { Grid gg; gg.Attach(wks); vector<string> vsUDLs = {"Description", "Test OK"}; gg.SetUserDefinedLabelNames(vsUDLs); wks.GetPage().Refresh(); } }
EX2
// This example creates a worksheet with 3 columns. Then adds two user defined parameters to the row label. void Grid_SetUserDefinedLabelNames_ex1() { Worksheet wks = Project.ActiveLayer(); if(wks) { Worksheet wks; wks.Create("Origin", CREATE_VISIBLE); wks.AddCol(); Grid gg; gg.Attach(wks); // attach the grid to the worksheet vector<string> vsUDLs = {"Operator", "MachineID"}; gg.SetUserDefinedLabelNames(vsUDLs); // Add two user defined labels. vector<int> vnTypes; gg.GetShowLabels(vnTypes, TRUE); // Get the current showing column label list vnTypes.Add(RCLT_UDL); vnTypes.Add(RCLT_UDL+1); // update the showing column label list gg.SetShowLabels(vnTypes); // Set the showing column labels wks.GetPage().Refresh(); } }
Grid::GetUserDefinedLabelNames Grid::GetShowLabels Grid::SetShowLabels
origin.h