DocumentDisplayDocTitle Property |
Gets or sets flag specifying whether document's window title bar should display document title.
Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic bool DisplayDocTitle { get; set; }
Public Property DisplayDocTitle As Boolean
Get
Set
public:
property bool DisplayDocTitle {
bool get ();
void set (bool value);
}
member DisplayDocTitle : bool with get, set
Property Value
Type:
Boolean
Examples
Example demonstrates how to get DisplayDocTitle flag:
Document document = new Document("sample.pdf");
bool value = document.DisplayDocTitle;
See Also