Position Property
See Also 
Xceed.Grid Assembly > Xceed.Grid Namespace > FixedColumnSplitter Class : Position Property


Gets or sets the position of the fixed column splitter.

Syntax

Visual Basic (Declaration) 
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
<BrowsableAttribute(False)>
Public Property Position As Integer
Visual Basic (Usage)Copy Code
Dim instance As FixedColumnSplitter
Dim value As Integer
 
instance.Position = value
 
value = instance.Position
C# 
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
[BrowsableAttribute(false)]
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 2000, Windows XP SP3 Family, Windows Server 2003-2008 Family, Windows Vista, Windows 7

See Also