Sha256: c3c3d7803f5cc38db95cc8ae2b7f0ec03429385ca95c6c132928c676508915e8
Contents?: true
Size: 698 Bytes
Versions: 19
Compression:
Stored size: 698 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 PageSetupDialog # Returns (a copy of) the page setup data of the dialog. # @return [Wx::PRT::PageSetupDialogData] page setup data copy def get_page_setup_data; end alias :page_setup_data :get_page_setup_data # Updates the page setup data for the dialog. # @param [Wx::PRT::PageSetupDialogData] setup_data the page setup data to update the dialog with # @return [void] def set_page_setup_data(setup_data); end alias :page_setup_data= :set_page_setup_data end end end
Version data entries
19 entries across 19 versions & 1 rubygems