Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / ScrollDirection Enumeration


In This Topic
    ScrollDirection Enumeration
    In This Topic
    Value indicating the direction in which to scroll the grid.
    Syntax
    'Declaration
     
    Public Enum ScrollDirection 
       Inherits System.Enum
    'Usage
     
    Dim instance As ScrollDirection
    public enum ScrollDirection : System.Enum 
    Members
    MemberDescription
    BottomPageScrolls the grid to bring the last bottom page into view. A page, in this case, represents a series of rows. For example, if a grid contains 1000 rows and only the first 100 are visible, scrolling to the bottom page will bring the last 100 rows into view.
    DownScrolls the grid to bring the first non-visible row at the bottom into view.
    LeftScrolls the grid to bring the first non-visible column on the left into view.
    LeftmostPageScrolls the grid to bring the leftmost page into view.
    PageDownScrolls the grid to bring the next non-visible page at the bottom into view. A page, in this case, represents a series of rows. For example, if a grid contains 1000 rows and only the first 100 are visible, scrolling page down will bring the next 100 rows into view.
    PageLeftScrolls the grid to bring the next non-visible page on the left into view. A page, in this case, represents a series of columns. For example, if a grid contains 16 columns and only the last 4 are visible, scrolling page left will bring the previous 4 columns into view.
    PageRightScrolls the grid to bring the next non-visible page on the right into view. A page, in the case, represents a series of columns. For example, if a grid contains 16 columns and only the first 4 are visible, scrolling page right will bring the next 4 columns into view.
    PageUpScrolls the grid to bring the next non-visible page at the top into view. A page, in this case, represents a series of rows. For example, if a grid contains 1000 rows and only the last 100 are visible, scrolling page up will bring the previous 100 rows into view.
    RightScrolls the grid to bring the first non-visible column on the right into view.
    RightmostPageScrolls the grid to bring the rightmost page into view.
    TopPageScrolls the grid to bring the first top page into view. A page, in this case, represents a series of rows. For example, if a grid contains 1000 rows and only the last 100 are visible, scrolling to the top page will bring the first 100 rows into view.
    UpScrolls the grid to bring the first non-visible row at the top into view.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Grid.ScrollDirection

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also