Skip to main content

SplitterSettings.SeparatorSize Property

Gets or sets the size of separators within the Splitter.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public Unit SeparatorSize { get; set; }

Property Value

Type Description
Unit

A Unit object that represents the size.

Remarks

This property affects all separators displayed within the Splitter. It specifies the width for vertical separators and the height for horizontal separators.

The SplitterSettings property’s value can be overridden at the level of individual panes, using the SplitterSeparators.Size property, which can be accessed via the SplitterPane.Separators property.

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.

See Also