ViewerPreferencesHideWindowUI Property

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets or sets a flag specifying whether to hide user interface elements in the document’s window (such as scroll bars and navigation controls), leaving only the document’s contents displayed. 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 HideWindowUI { get; set; }

Property Value

Type: Boolean
true if hide window UI; otherwise, false.
Examples

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

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

Reference