Skip to main content
Tab

SplitterSeparators.Size Property

Gets or sets the size of a pane’s child pane separators (height or width upon the orientation).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(typeof(Unit), "")]
public Unit Size { get; set; }

Property Value

Type Default Description
Unit String.Empty

A Unit object that represents the size.

Remarks

This property affects all separators displayed within a pane to separate its child panes. The Size property specifies the width for vertical separators, and the height for horizontal separators. The separator orientation depends on the ASPxSplitter.Orientation property value.

The separator size can be defined only in pixel-compatible size units (that is, all measurement units are supported with the exception of the UnitType.Em, UnitType.Ex and UnitType.Percentage). The separator size cannot be less than 1px.

The Size property overrides the common size defined for separators via the control’s ASPxSplitter.SeparatorSize property.

See Also