StructuredValue Objects
This interface defines a structured value. A structured value consists of a number of simple attributes.
s.changeAttributeValue(index, value) : StructuredValue
index (int) : the index
value (Object) : the new value
Returns a new structured value with the attribute value at the specified index changed to the new value. An attribute value cannot be None -- if the supplied value is None, it will be ignored.
s.getAttributeCount() : int
Returns the number of attribute values in the structure.
s.getAttributeValue(index) : Object
index (int) : the index
Returns the attribute value at the specified index.