Tests whether this Statement is paged.

Namespace: Endeca.Navigation.Analytics
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public virtual bool Paged { get; }
Visual Basic
Public Overridable ReadOnly Property Paged As Boolean
	Get
Visual C++
public:
virtual property bool Paged {
	bool get ();
}

Field Value

true if this Statement is paged, false otherwise.

Remarks

A Statement is paged if the application only wants a subset of the records that the Statement computes.

By default, the paged setting is false. Calling the SetReturnRows(Int32, Int32) method sets paged to true.

See Also