2.2.4.5.21 Column::GetLongName

Description

Get the long name of a column.

Syntax

string GetLongName( )

Parameters

Return

The long name.

Examples

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());
}

Remark

Get the long name of a column.

See Also

Column::SetLongName

Header to Include

origin.h