查看源代码 wxPrintDialog (wx v2.4.3)

这个类表示打印和打印设置的通用对话框。

您可以从成功关闭的打印对话框中获取一个 wxPrinterDC(在 wx 中未实现)设备上下文。

请参阅

这个类派生自以下类,并可以使用以下类中的函数

wxWidgets 文档: wxPrintDialog

摘要

函数

销毁对象

返回打印对话框创建的设备上下文(如果有)。

返回与打印对话框关联的打印对话框数据。

类型

-type wxPrintDialog() :: wx:wx_object().

函数

-spec destroy(This :: wxPrintDialog()) -> ok.

销毁对象

-spec getPrintDC(This) -> wxDC:wxDC() when This :: wxPrintDialog().

返回打印对话框创建的设备上下文(如果有)。

当此函数被调用时,设备上下文的所有权将转移到应用程序,因此必须显式删除它。

链接到此函数

getPrintDialogData(This)

查看源代码
-spec getPrintDialogData(This) -> wxPrintDialogData:wxPrintDialogData() when This :: wxPrintDialog().

返回与打印对话框关联的打印对话框数据。

-spec new(Parent) -> wxPrintDialog() when Parent :: wxWindow:wxWindow().

等同于 new(Parent, [])

-spec new(Parent, [Option]) -> wxPrintDialog()
             when Parent :: wxWindow:wxWindow(), Option :: {data, wxPrintDialogData:wxPrintDialogData()};
         (Parent, Data) -> wxPrintDialog()
             when Parent :: wxWindow:wxWindow(), Data :: wxPrintData:wxPrintData().