Sha256: ae82b8c1c918583e03466e83f3f746acbd58fbb19b4f36ac322e5ba9c11f3d7c
Contents?: true
Size: 727 Bytes
Versions: 5
Compression:
Stored size: 727 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
5 entries across 5 versions & 1 rubygems