Document.DisplayDocTitle

Document.DisplayDocTitle property

Gets or sets flag specifying whether document’s window title bar should display document title.

public bool DisplayDocTitle { get; set; }

Examples

Example demonstrates how to get DisplayDocTitle flag:

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

See Also