DocumentHideToolBar Property
Gets or sets flag specifying whether toolbar should be hidden when document is active.

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public bool HideToolBar { get; set; }

Property Value

Type: Boolean
Examples
Example demonstrates how to get HideToolBar flag:
C#
Document document = new Document("sample.pdf");
bool value = document.HideToolBar;
See Also