wpf-devexpress-dot-xpf-dot-grid-dot-columnbase-e174064c.md
Gets or sets the editor’s position among the visible editors in the edit form. This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public int EditFormVisibleIndex { get; set; }
Public Property EditFormVisibleIndex As Integer
| Type | Description |
|---|---|
| Int32 |
An integer value that is the zero-based index of the editor associated with the current column. The default is 0.
|
Use the EditFormVisibleIndex property to control the display order of the editors nested in the edit form. The following table describes the effect of the EditFormVisibleIndex property.
|
ColumnBase.EditFormVisibleIndex
property value
|
Position of the corresponding editor in the edit form
| | --- | --- | |
0 (default)
|
The editor’s position in the edit form is determined based on the corresponding column’s BaseColumn.VisibleIndex property value.
| |
Non-default (greater that 0 )
|
The editor’s position in the edit form is determined by the ColumnBase.EditFormVisibleIndex property value.
|
See Also