Sha256: b2ab0593e9d59eac273f635b2e937bafcfb06347b222f4339d714b9ff0214096
Contents?: true
Size: 701 Bytes
Versions: 18
Compression:
Stored size: 701 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx module PRT class Printer # Returns (a copy of) the print dialog data of the printer. # @return [Wx::PRT::PrintDialogData] print dialog data copy def get_print_dialog_data; end alias :print_dialog_data :get_print_dialog_data # Updates the print dialog data for the printer. # @param [Wx::PRT::PrintDialogData] prt_data the print dialog data to update the printer with # @return [void] def set_print_dialog_data(prt_data); end alias :print_dialog_data= :set_print_dialog_data end end end
Version data entries
18 entries across 18 versions & 1 rubygems