Document.FitWindow

Document.FitWindow property

Gets or sets flag specifying whether document window must be resized to fit the first displayed page.

public bool FitWindow { get; set; }

Examples

Example demonstrates how to get FitWindow flag:

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

See Also