Back to Devexpress

NormalViewProperties.UseSingleView Property

officefileapi-devexpress-dot-docs-dot-presentation-dot-normalviewproperties-6c919455.md

latest1.8 KB
Original Source

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.2.dll

NuGet Package : DevExpress.Docs.Presentation

Declaration

csharp
public bool UseSingleView { get; set; }
vb
Public Property UseSingleView As Boolean

Property Value

TypeDescription
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:

csharp
using (Presentation presentation = new Presentation("document.pptx")) {
    presentation.ViewProperties.NormalViewProperties.UseSingleView = true;
}
vb
Using presentation As New Presentation("document.pptx")
    presentation.ViewProperties.NormalViewProperties.UseSingleView = True
End Using

See Also

NormalViewProperties Class

NormalViewProperties Members

DevExpress.Docs.Presentation Namespace