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

SplitterSettings.FullscreenMode Property

Gets or sets whether the Splitter is used in a full-screen mode.

Namespace: DevExpress.Web.Mvc

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

Declaration

public bool FullscreenMode { get; set; }

Property Value

Type Description
Boolean

true to enable full-screen mode; otherwise, false.

Remarks

To enable the full-screen mode for a Splitter, set the FullscreenMode property to true. In this case, the Splitter fills the entire page and can be resized together with the browser window.

Example

splitter-pane-orientation

@Html.DevExpress().Splitter(
     settings => {
          settings.Name = "splFullScreenMode";
          settings.Orientation = Orientation.Vertical;
          settings.FullscreenMode = true;
          settings.Panes.Add(pane => {
               ...
     }).GetHtml()

For a full example, see Splitter - Fullscreen Mode demo.

See Also