【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.5.21 Column::GetLongName
Contents
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
Header to Include
origin.h