Skip to main content
Tag

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ColumnBase.EditFormVisibleIndex Property

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.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public int EditFormVisibleIndex { get; set; }

#Property Value

Type Description
Int32

An integer value that is the zero-based index of the editor associated with the current column. The default is 0.

#Remarks

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