Skip to main content
A newer version of this page is available. .

GridSplitContainer.FixedPanel Property

Gets or sets the fixed panel.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DefaultValue(SplitFixedPanel.None)]
public override SplitFixedPanel FixedPanel { get; set; }

Property Value

Type Default Description
SplitFixedPanel **None**

A SplitFixedPanel enumeration value which specifies the fixed panel.

Available values:

Name Description
None

The panels’ widths (or heights) are proportionally changed when a split container is being resized.

Panel1

The width (height if the panels are displayed one above another) of the SplitContainerControl.Panel1 isn’t changed when the split container is resized.

Panel2

The width (height if the panels are displayed one above another) of the SplitContainerControl.Panel2 isn’t changed when the split container is resized.

Remarks

This property is overridden to provide a default value different from the one provided by the base class. See SplitContainerControl.FixedPanel, to learn about the property’s functionality.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FixedPanel property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also