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

    Gets or sets whether to display slide area only (hide thumbnails and notes).

    Namespace: DevExpress.Docs.Presentation

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

    NuGet Package: DevExpress.Docs.Presentation

    Declaration

    public bool UseSingleView { get; set; }

    Property Value

    Type Description
    Boolean

    true to allow the application to display one of the content regions in the entire window; otherwise false.

    Remarks

    The following code snippet displays a single view:

    DevExpress Presentation Views - Show Single View

    using (Presentation presentation = new Presentation("document.pptx")) {
        presentation.ViewProperties.NormalViewProperties.UseSingleView = true;
    }
    
    See Also