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
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
The following code snippet displays a single view:
using (Presentation presentation = new Presentation("document.pptx")) {
presentation.ViewProperties.NormalViewProperties.UseSingleView = true;
}
See Also