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