Document.HideWindowUI

Document.HideWindowUI property

Gets or sets flag specifying whether user interface elements should be hidden when document is active.

public bool HideWindowUI { get; set; }

Examples

Example demonstrates how to get HideWindowUI flag:

Document document = new Document("sample.pdf");
bool value = document.HideWindowUI;

See Also