OptionsColumnEditForm.RowSpan Property
Gets or sets the number of layout rows the editor spans within an Edit Form. For the RowSpan property to be in effect, set the OptionsColumnEditForm.UseEditorColRowSpan property to false.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Int32 | 1 | The number of rows the editor spans in an Edit Form. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Row |
---|---|
Grid |
|
#Remarks
Note
For the Row
and Optionsfalse
.
gridView1.OptionsBehavior.EditingMode = DevExpress.XtraGrid.Views.Grid.GridEditingMode.EditForm;
colProductID.OptionsEditForm.UseEditorColRowSpan = false;
colProductID.OptionsEditForm.ColumnSpan = 2;
colProductID.OptionsEditForm.RowSpan = 2;
See the OptionsColumnEditForm.ColumnSpan property to learn more.