SetLongName
Set the long name of a column.
BOOL SetLongName( LPCSTR lpcszLongName )
TRUE if OK.
EX1
// Create a new worksheet, add a column and assign long names to each column void Column_SetLongName_Ex1() { Worksheet wks; wks.Create("Origin", CREATE_VISIBLE); wks.AddCol(); BOOL bRet = wks.Columns(0).SetLongName("Start of Run"); bRet = wks.Columns(1).SetLongName("Yield at Stage 1"); bRet = wks.Columns(2).SetLongName("Yield at Stage 2"); }
Column::GetLongName, Column::GetExtendedLabel, Column::SetExtendedLabel
origin.h