WebBrowser print settings

后端 未结 1 539
滥情空心
滥情空心 2020-11-27 22:56

How ca i change my html document orientation(to Landscape) for printing using WebBrowser control.

var browser = new WebBrowser();
browser.DocumentCompleted +         


        
相关标签:
1条回答
  • 2020-11-27 23:34

    To control HTML printing layout beyond @media CSS with WebBrowser (both WinForms and WPF), you would need to implement your own Internet Explorer Print Template. That would provide full control over headers, margins, columns, etc.

    Specifically, you're after TemplatePrinter.orientation. It isn't properly documented, but it works. The source of the standard IE print template can be viewed when navigated to res://ieframe.dll/preview.dlg.

    Some other relevant resources:

    • Beyond Print Preview: Print Customization for Internet Explorer 5.5
    • Print Preview 2: The Continuing Adventures of Internet Explorer 5.5 Print Customization
    • Print Templates, Part I
    • View templates for HTML source documents
    • Demystifying printing with the Microsoft WebBrowser control and ShowHTMLDialogEx
    • Add support to print & preview HTML in a dialog-based MFC app
    • IDM_PRINT
    • IDM_PRINTPREVIEW
    • MSKB: How to print custom headers and footers for a WebBrowser control in Internet Explorer
    0 讨论(0)
提交回复
热议问题