【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.5.22 Column::GetLowerBound
Contents
Description
Get the begining row index for this column. Index values are 0 based.
Syntax
int GetLowerBound( )
Parameters
Return
Returns begining row index.
Examples
EX1
// Worksheet with at least one column with some data must exist in project void Column_GetLowerBound_Ex1() { Worksheet wks = Project.ActiveLayer(); Column colObj(wks, 0); int nR1 = 5; colObj.SetLowerBound(nR1); nR1 == colObj.GetLowerBound(); }
Remark
GetLowerBound is synonym for GetLowerIndex, similarily for SetUpperIndex and SetUpperBound
See Also
Column::GetUpperBound, vectorbase::GetUpperBound, vectorbase::GetLowerBound
Header to Include
origin.h