Document.HideToolBar

Document.HideToolBar property

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

public bool HideToolBar { get; set; }

Examples

Example demonstrates how to get HideToolBar flag:

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

See Also