Class: Wx::GBSpan
- Inherits:
-
Object
- Object
- Wx::GBSpan
- Defined in:
- lib/wx/doc/gen/grid_bag_sizer.rb
Overview
Note:
This class is untracked and should not be derived from nor instances extended!
This class is used to hold the row and column spanning attributes of items in a GridBagSizer.
Category: Window Layout
Instance Method Summary collapse
-
#==(o) ⇒ Boolean
Compare equality of two GBSpans.
-
#get_colspan ⇒ Integer
(also: #colspan)
Get the current colspan value.
-
#get_rowspan ⇒ Integer
(also: #rowspan)
Get the current rowspan value.
-
#initialize(*args) ⇒ GBSpan
constructor
A new instance of GBSpan.
-
#set_colspan(colspan) ⇒ void
(also: #colspan=)
Set a new colspan value.
-
#set_rowspan(rowspan) ⇒ void
(also: #rowspan=)
Set a new rowspan value.
Constructor Details
#initialize ⇒ Wx::GBSpan #initialize(rowspan, colspan) ⇒ Wx::GBSpan
Returns a new instance of GBSpan.
237 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 237 def initialize(*args) end |
Instance Method Details
#==(o) ⇒ Boolean
Compare equality of two Wx::GBSpans.
264 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 264 def ==(o) end |
#get_colspan ⇒ Integer Also known as: colspan
Get the current colspan value.
241 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 241 def get_colspan; end |
#get_rowspan ⇒ Integer Also known as: rowspan
Get the current rowspan value.
246 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 246 def get_rowspan; end |
#set_colspan(colspan) ⇒ void Also known as: colspan=
This method returns an undefined value.
Set a new colspan value.
252 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 252 def set_colspan(colspan) end |
#set_rowspan(rowspan) ⇒ void Also known as: rowspan=
This method returns an undefined value.
Set a new rowspan value.
258 |
# File 'lib/wx/doc/gen/grid_bag_sizer.rb', line 258 def set_rowspan(rowspan) end |