Skip to main content
All docs
V25.1
  • NormalViewProperties.HorizontalBarState Property

    Gets or sets the state of the horizontal splitter bar (separates the slide area from the notes pane).

    Namespace: DevExpress.Docs.Presentation

    Assembly: DevExpress.Docs.Presentation.v25.1.dll

    NuGet Package: DevExpress.Docs.Presentation

    Declaration

    public SplitterBarState HorizontalBarState { get; set; }

    Property Value

    Type Default Description
    SplitterBarState SplitterBarState.Restored

    The horizontal splitter bar state.

    Available values:

    Name Description
    Minimized

    The slide region occupies the minimum available space within the application’s viewing area.

    Restored

    The primary region has a specific intermediate size.

    Maximized

    The slide region occupies the maximum available space within the application’s viewing area.

    Remarks

    The following code snippet maximizes the horizontal bar (gives more space for the slide region):

    DevExpress Presentation API - Minimized Horizonal Bar

    using (Presentation presentation = new Presentation("document.pptx")) {
        presentation.ViewProperties.NormalViewProperties.HorizontalBarState =
            SplitterBarState.Maximized;
    }
    
    See Also