SetLowerBound
Set the beginning row indices for the specified columns in the Worksheet.
BOOL SetLowerBound( int iR1, int iC1 = 0, int iC2 = -1 )
Returns TRUE on success and FALSE on failure.
EX1
//Set the beginning row indices for the specified columns in the Worksheet. void Worksheet_SetLowerBound_Ex1() { Worksheet wks = Project.ActiveLayer(); int nR1 = 5; if( wks.SetLowerBound(nR1) ) printf("Success to set lower bound of specified column!"); else printf("Fail to set lower bound of specified column!"); }
Worksheet::SetUpperBound, Worksheet::SetBounds
origin.h