Document.CenterWindow

Document.CenterWindow property

Gets or sets flag specifying whether position of the document’s window will be centerd on the screen.

public bool CenterWindow { get; set; }

Examples

Example demonstrates how to get CenterWindow flag:

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

See Also