DocumentHideWindowUI Property |
Gets or sets flag specifying whether user interface elements should be hidden when document is active.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 21.1
Syntaxpublic bool HideWindowUI { get; set; }
Public Property HideWindowUI As Boolean
Get
Set
public:
property bool HideWindowUI {
bool get ();
void set (bool value);
}
member HideWindowUI : bool with get, set
Property Value
Type:
Boolean
Examples
Example demonstrates how to get HideWindowUI flag:
Document document = new Document("sample.pdf");
bool value = document.HideWindowUI;
See Also