SetParameter
Set one parameter in a column label.
BOOL SetParameter( LPCTSTR lpcszParam, int index = 0 )
TRUE if OK, otherwise FALSE.
EX1
// Create a worksheet and add a Parameter void Column_SetParameter_Ex1() { Worksheet wks; wks.Create("Origin", CREATE_VISIBLE); wks.Columns(0).SetParameter("First", 0); wks.Columns(1).SetParameter("Second", 0); // Parameters have been set but aren't displayed yet Grid grd; grd.Attach(wks); grd.ShowLabels(RCLT_PARAM); }
Sets one built-in parameter label in a column. Please note that if you need to use User Parameters, you should use SetExtendedLabel.
See also this LabTalk page.
Column::GetExtendedLabel, Column::SetExtendedLabel
origin.h