Specifies how the page controls are displayed on a RadDataPager control.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
[Flags]
public enum PagerDisplayModes
Fields
Shows all available buttons.
C#
All = Numeric | FirstLastPreviousNext
Shows the First button.
C#
First = 1
Shows the First, Last and numeric buttons.
C#
FirstLastNumeric = First | Last | Numeric
Shows the First, Last, Previous, and Next buttons.
C#
FirstLastPreviousNext = First | Last | PreviousNext
Shows the First, Last, Previous, Next, and numeric buttons.
C#
FirstLastPreviousNextNumeric = First | Last | PreviousNextNumeric
Shows the Last button.
C#
Last = 2
Shows the Next button.
C#
Next = 8
Shows the numeric buttons.
C#
Numeric = 16
Shows the Previous button.
C#
Previous = 4
Shows the Previous and Next buttons.
C#
PreviousNext = Previous | Next | Text
Shows the Previous, Next, and numeric buttons.
C#
PreviousNextNumeric = Previous | Next | Numeric
Shows the page index text box.
C#
Text = 32