Intersoft ClientUI Documentation
DisplayMode Property
See Also  Send Feedback
Intersoft.Client.UI.Data Namespace > UXDataPager Class : DisplayMode Property






Gets or sets a value that indicates how the UXDataPager user interface is displayed.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Common Properties")>
Public Property DisplayMode As PagerDisplayMode
Visual Basic (Usage)Copy Code
Dim instance As UXDataPager
Dim value As PagerDisplayMode
 
instance.DisplayMode = value
 
value = instance.DisplayMode
C# 
[CategoryAttribute("Common Properties")]
public PagerDisplayMode DisplayMode {get; set;}
Delphi 
public read-write property DisplayMode: PagerDisplayMode; 
JScript 
CategoryAttribute("Common Properties")
public function get,set DisplayMode : PagerDisplayMode
Managed Extensions for C++ 
[CategoryAttribute("Common Properties")]
public: __property PagerDisplayMode get_DisplayMode();
public: __property void set_DisplayMode( 
   PagerDisplayMode value
);
C++/CLI 
[CategoryAttribute("Common Properties")]
public:
property PagerDisplayMode DisplayMode {
   PagerDisplayMode get();
   void set (    PagerDisplayMode value);
}

Example

The following illustration shows the UXDataPager configured to use different display mode.

XAML Copy Code
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="FirstLastNumeric"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="FirstLastPreviousNext"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="FirstLastPreviousNextNumeric"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}" NumericButtonCount="3" AutoEllipsis="True"
                        Margin="8" DisplayMode="FirstLastPreviousNextNumeric"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}" NumericButtonCount="2"
                        Margin="8" DisplayMode="FirstLastPreviousNextNumeric"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="Numeric"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="PreviousNext"/>
    <Intersoft:UXDataPager PageSize="20" QueryOperation="Client" Source="{Binding Customers}"
                        Margin="8" DisplayMode="PreviousNextNumeric"/>

Remarks

You can customize the appearance of the UXDataPager by setting the DisplayMode property. If you use a DisplayMode that displays numeric buttons, you can change the number of buttons displayed by setting the NumericButtonCount property.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.