ViewerPreferencesDisplayDocTitle Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets a flag specifying whether the window’s title bar should display the document title taken from the Title entry of the document information. If false, the title bar should instead display the name of the PDF file containing the document. Default value: false.

Namespace:  Apitron.PDF.Kit.FixedLayout
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public bool DisplayDocTitle { get; set; }

Property Value

Type: Boolean
true if display doc title; otherwise, false.
Examples

C#
// this objects represents a PDF fixed document
FixedDocument document = new FixedDocument(inPdf);

// change viewer preferences
document.ViewerPreferences.DisplayDocTitle = true;
See Also

Reference