Sha256: c02c72fab320a3cc24b3b69991556f7e83efc89f8b488708e2654eced4aa69cf
Contents?: true
Size: 605 Bytes
Versions: 5
Compression:
Stored size: 605 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx class ColourDialog # Returns (a copy of) the colour data of the dialog. # @return [Wx::ColourData] colour data copy def get_colour_data; end alias :colour_data :get_colour_data # Updates the colour data for the dialog. # @param [Wx::ColourData] clr_data the colour data to update the dialog with # @return [void] def set_colour_data(clr_data); end alias :colour_data= :set_colour_data end end
Version data entries
5 entries across 5 versions & 1 rubygems