GetCustomDisplay
Return the custom date display string. Only valid for Date type columns.
string GetCustomDisplay( )
The custom date display string
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()); }
Column::SetCustomDisplay
origin.h