Skip to main content
Tab

GridColumnEditFormSettings.RowSpan Property

Gets or sets the number of rows in the Edit Form that the edit cell spans.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(0)]
public int RowSpan { get; set; }

Property Value

Type Default Description
Int32 0

An integer value that specifies the number of rows in the Edit Form that the edit cell spans.

Property Paths

You can access this nested property as listed below:

Object Type Path to RowSpan
GridViewDataColumn
.EditFormSettings .RowSpan

Remarks

An Edit Cell displays the name of the column to which it corresponds. The caption’s location is specified by the GridColumnEditFormSettings.CaptionLocation property.

If the GridColumnEditFormSettings.CaptionLocation property is set to Default and the RowSpan property is set to 1, the caption is displayed next to the editor. Otherwise, if the RowSpan property is set to 2 or greater, the caption is located along the top of the edit cell.

Note

When the edit form Form Layout is used in adaptive mode (the FormLayoutAdaptivitySettings.AdaptivityMode property is not set to Off), the RowSpan property value is ignored.

See Also