Gets the 0-based offset of the 'page' of records represented by this result.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public long RecordOffset { get; }
Visual Basic (Declaration)
Public ReadOnly Property RecordOffset As Long
Visual C++
public:
property long long RecordOffset {
	long long get ();
}

Remarks

This value is used on conjunction with RecordsPerPage to locate the position of the current page of records within the total set of available matching records. For example, if the value of RecordsPerPage is 10 and the value of RecordOffset is 30, then the current page represents the fourth page of records.

See Also