Sha256: 8d5a0cfa5e81f83a52d34776277dc2cf715f8d063bca61e3b953ec8b20673b9e
Contents?: true
Size: 757 Bytes
Versions: 2
Compression:
Stored size: 757 Bytes
Contents
module Wx::PRT class PrinterDC < Wx::DC # Executes the given block providing a temporary (printer) dc as # it's single argument. # @param [Wx::PRT::PrintData] print_data print_data defining the print settings # @yieldparam [Wx::PrinterDC] dc the PrinterDC instance to paint on # @return [Object] result of the block def self.draw_on(win) end end class PostScriptDC < Wx::DC # Executes the given block providing a temporary (postscript) dc as # it's single argument. # @param [Wx::PRT::PrintData] print_data print_data defining the print settings # @yieldparam [Wx::PostScriptDC] dc the PostScriptDC instance to paint on # @return [Object] result of the block def self.draw_on(win) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wxruby3-0.9.0.pre.rc.2 | lib/wx/doc/prt/printer_dc.rb |
wxruby3-0.9.0.pre.rc.1 | lib/wx/doc/prt/printer_dc.rb |