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