_geo :: Attribute :: Class Attribute
[hide private]
[frames] | no frames]

Class Attribute

object --+
         |
        Attribute

An attribute on a 3d object.

Instance Methods [hide private]
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__getitem__(x, y)
x[y]
 
__len__(x)
len(x)
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
bool
invalid(self)
Check whether the type for this attribute is valid (i.e.
bool
valid(self)
Check whether the type for this attribute is valid (i.e.

Inherited from object: __format__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]
  name
The name for the attribute.
  type
The type of the attribute values.

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__setattr__(...)

 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__

invalid(self)

 

Check whether the type for this attribute is valid (i.e. one of the known and supported types). This is equivalent to 'not self.valid()'

Returns: bool

valid(self)

 

Check whether the type for this attribute is valid (i.e. one of the known and supported types).

Returns: bool