2.2.4.5.9 Column::GetCustomDisplay

Description

Return the custom date display string. Only valid for Date type columns.

Syntax

string GetCustomDisplay( )

Parameters

Return

The custom date display string

Examples

EX1

//Custom worksheet column date format
void	Column_GetCustomDisplay_Ex1()
{
    Worksheet wks = Project.ActiveLayer();
    if(!wks)
        return;
 
    Column col(wks, 0);
    if( col )
        printf("The custom display format of Column %u is %s\n", col.GetIndex(), col.GetCustomDisplay());
}

Remark

See Also

Column::SetCustomDisplay

Header to Include

origin.h