Home | Trees | Index | Help |
|
---|
Package wx :: Class GBSpan |
|
object
--+
|
GBSpan
This class is used to hold the row and column spanning attributes of
items in a wx.GridBagSizer
. wxPython has typemaps that will
automatically convert from a 2-element sequence of integers to a
wx.GBSpan, so you can use the more pythonic representation of the span
nearly transparently in Python code.
Method Summary | |
---|---|
GBSpan |
Construct a new wxGBSpan, optionally setting the rowspan and colspan. |
bool |
Compare wxGBSpan for equality. |
__getitem__(self,
index)
| |
__len__(self)
| |
bool |
Compare GBSpan for inequality. |
__nonzero__(self)
| |
__reduce__(self)
| |
__repr__(self)
| |
__setitem__(self,
index,
val)
| |
__str__(self)
| |
asTuple is deprecated, use Get instead | |
PyObject | Get(self)
|
int | GetColspan(self)
|
int | GetRowspan(self)
|
Set(self,
rowspan,
colspan)
| |
SetColspan(self,
colspan)
| |
SetRowspan(self,
rowspan)
| |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
Return hash(x)... | |
Return a new object with type S, a subtype of T... | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value |
Property Summary | |
---|---|
colspan | |
rowspan |
Class Variable Summary | |
---|---|
bool |
__safe_for_unpickling__ = True
|
Method Details |
---|
__init__(self,
rowspan=1,
colspan=1)
|
__eq__(self,
other)
|
__ne__(self, other)Compare GBSpan for inequality.
|
asTuple(*args, **kwargs)asTuple is deprecated, use |
Property Details |
---|
colspan
|
rowspan
|
Class Variable Details |
---|
__safe_for_unpickling__
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Sat Jun 16 16:42:17 2007 | http://epydoc.sf.net |