GetLongName
Get the long name of a column.
string GetLongName( )
The long name.
EX1
// Worksheet must be the active window void Column_GetLongName_Ex1() { Worksheet wks = Project.ActiveLayer(); string strName; for( int ii = 0; ii < wks.GetNumCols() ; ii++ ) printf("Column %u has the long name '%s'\n", ii + 1, wks.Columns(ii).GetLongName()); }
Column::SetLongName
origin.h