DocumentDisplayDocTitle Property
Gets or sets flag specifying whether document's window title bar should display document title.

Namespace: Aspose.Pdf
Assembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntax
public bool DisplayDocTitle { get; set; }

Property Value

Type: Boolean
Examples
Example demonstrates how to get DisplayDocTitle flag:
C#
Document document = new Document("sample.pdf");
bool value = document.DisplayDocTitle;
See Also