Skip to main content

SplitterSettings.PaneMinSize Property

Gets or sets the minimum size of panes within the Splitter.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public Unit PaneMinSize { get; set; }

Property Value

Type Description
Unit

A Unit structure that defines the minimum size of panes (either width or height, depending upon the pane orientation).

Remarks

The default property’s value - 40.

Use the PaneMinSize to specify the minimum size that can be defined for the splitter’s panes using the SplitterPane.Size property or by dragging pane separators at runtime. The PaneMinSize property specifies the height for the panes which are stacked vertically within their container (a parent pane of a splitter control), and the width - for horizontally stacked panes.

This property setting can be overridden at the level of individual panes, using a pane’s SplitterPane.MinSize property.

See Also