Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / FixedColumnSplitter Class / Position Property


In This Topic
    Position Property (FixedColumnSplitter)
    In This Topic
    Gets or sets the position of the fixed column splitter.
    Syntax
    'Declaration
     
    <BrowsableAttribute(False)>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    Public Property Position As Integer
    'Usage
     
    Dim instance As FixedColumnSplitter
    Dim value As Integer
     
    instance.Position = value
     
    value = instance.Position
    [Browsable(false)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public int Position {get; set;}

    Property Value

    A zero-based value representing the position of the fixed column splitter.
    Remarks

    The fixed column splitter will always be located to the immediate right of the fixed columns. Its position reflects the number of fixed columns in the grid. For example, if the grid contains 2 fixed columns, the position of the fixed column splitter will be 2 (zero-based).

    The Position property can also be used to determine the number of fixed columns contained in the grid rather than consulting each Column's Fixed property.

    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