GetLowerBound
Get the begining row index for this column. Index values are 0 based.
int GetLowerBound( )
Returns begining row index.
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(); }
GetLowerBound is synonym for GetLowerIndex, similarily for SetUpperIndex and SetUpperBound
Column::GetUpperBound, vectorbase::GetUpperBound, vectorbase::GetLowerBound
origin.h