NormalViewProperties.VerticalBarState Property
Gets or sets the state of the vertical splitter bar (separates the slide area from the thumbnails pane).
Namespace: DevExpress.Docs.Presentation
Assembly: DevExpress.Docs.Presentation.v25.1.dll
NuGet Package: DevExpress.Docs.Presentation
Declaration
Property Value
Type | Default | Description |
---|---|---|
SplitterBarState | SplitterBarState.Restored | The vertical 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 minimizes the vertical splitter bar:
using (Presentation presentation = new Presentation("document.pptx")) {
presentation.ViewProperties.NormalViewProperties.VerticalBarState =
SplitterBarState.Minimized;
}
The following code snippet maximizes the vertical splitter bar:
using (Presentation presentation = new Presentation("document.pptx")) {
presentation.ViewProperties.NormalViewProperties.VerticalBarState =
SplitterBarState.Maximized;
}
See Also