Skip to main content

TreeListOptionsColumnEditForm.UseEditorColRowSpan Property

Gets or sets whether the number of layout columns and rows that the editor occupies depend on the editor type.

Namespace: DevExpress.XtraTreeList.Columns

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool UseEditorColRowSpan { get; set; }

Property Value

Type Default Description
Boolean true

true if the number of layout columns and rows that the editor occupies depend on the editor type; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to UseEditorColRowSpan
TreeListColumn
.OptionsEditForm .UseEditorColRowSpan

Remarks

An editor within an Edit Form spans one or more layout columns. The default number depends on the editor type. Most editors span one layout column and one layout row except for the MemoEdit and PictureEdit editors. The PictureEdit spans two layout columns and three layout rows. The MemoEdit spans all layout columns and three layout rows.

image

If you want to use a custom layout column and row spans, set the UseEditorColRowSpan property to false and use the RowSpan and ColumnSpan properties to specify the spans.

The tree list’s EditFormColumnCount option specifies the total number of layout columns in the Edit Form.

See Also