BizBlox
Populate the DOCollection with a subset of the search results
generated using the set query.

Declaration Syntax
public void FetchRange(
int startIndex,
int endIndex
)
Public Sub FetchRange ( _
startIndex As Integer, _
endIndex As Integer _
)
public:
void FetchRange(
int startIndex,
int endIndex
)

Parameters
- startIndex (Int32)
- The index of the first row to be retrieved.
Must be >=0 and <= the row count of the results.
- endIndex (Int32)
- The index of the final row to be retrieved.

Remarks

Examples
This will retrieve the first 50 rows in the result set:
CopyC#
Dim sColl as New StudentCollection
Dim mySql as SQLBuilder = sColl.GetSqlBuilder()
mySql.addWhere(Student.Columns.Name, name)
sColl.FindRange(0, 49)
Assembly:
pixolut.BizBlox (Module: pixolut.BizBlox) Version: 1.8.5.0