Skip to main content
Tab

SpanRule.RowSpan Property

Gets or sets the number of rows that the layout item spans at a specified breakpoint.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public int RowSpan { get; set; }

Property Value

Type Description
Int32

An integer value specifying the number of rows.

Remarks

Creating a LayoutBreakpoint object implicitly declares a control’s width between 0 and the RowSpan property value (if there are no breakpoints with a lower RowSpan property value) where the Form Layout arranges its items in a specified number of columns (LayoutBreakpoint.ColumnCount). The Form Layout item’s SpanRule object specifies the number of columns (SpanRule.ColumnSpan) and rows (SpanRule.RowSpan) the layout item occupies until the control’s width reaches the RowSpan property of a given LayoutBreakpoint object. The SpanRule.BreakpointName property specifies the span rule’s breakpoint identifier.

Concept

Adaptivity

Online Demo

Form Layout - Adaptive Grid Layout

See Also