API Reference
Class
RangeChunk
Represents a rectangular block of rows produced during streaming.
Inheritance
- Object
- RangeChunk
Inherited Methods
public override Boolean Equals(Object obj) #Returns:
BooleanInherited from Object
Parameters
- obj Object
Properties
public Int32 StartRow { get; } #First row index (1-based) covered by this chunk.
public Int32 RowCount { get; } #Number of rows in this chunk.
public Int32 StartCol { get; } #First column index (1-based) covered by this chunk.
public Int32 ColCount { get; } #Number of columns in this chunk.
public Object[][] Rows { get; } #Row-major values array. Size is RowCount x ColCount.