Sha256: bde8d0260cd16afc131020c148709b5556fa96fe9a2afceb916622bffa8a25e4
Contents?: true
Size: 974 Bytes
Versions: 7
Compression:
Stored size: 974 Bytes
Contents
# :stopdoc: # Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # :startdoc: module Wx # Just a shortcut version for creating a vertical box sizer class VBoxSizer < Wx::BoxSizer # Constructor for a {Wx::VBoxSizer}. # @return [Wx::VBoxSizer] def initialize; end end # Just a shortcut version for creating a vertical wrap sizer class VWrapSizer < Wx::WrapSizer # Constructor for a {Wx::VWrapSizer}. # The flags parameter can be a combination of the values {Wx::EXTEND_LAST_ON_EACH_LINE} which will cause the last # item on each line to use any remaining space on that line and {Wx::REMOVE_LEADING_SPACES} which removes any spacer # elements from the beginning of a row. # Both of these flags are on by default. # @param flags [Integer] # @return [Wx::VWrapSizer] def initialize(flags=Wx::WRAPSIZER_DEFAULT_FLAGS) end end end
Version data entries
7 entries across 7 versions & 1 rubygems