Show how to set print data options when using HTMLEasyPrinting

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2003-12-29 23:21:03 +00:00
parent 1202c414ea
commit 72d3f3166a

View File

@ -196,7 +196,7 @@ class TestHtmlPanel(wx.Panel):
def OnPrint(self, event): def OnPrint(self, event):
##self.printer.GetPageSetupData().SetMarginTopLeft((100,100)) self.printer.GetPrintData().SetPaperId(wx.PAPER_LETTER)
self.printer.PrintFile(self.html.GetOpenedPage()) self.printer.PrintFile(self.html.GetOpenedPage())
#---------------------------------------------------------------------- #----------------------------------------------------------------------