ooodev.adapter.beans.fast_property_set_t module
- protocol ooodev.adapter.beans.fast_property_set_t.FastPropertySetT[source]
Bases:
Protocol
Protocol class for XFastPropertySet.
Classes that implement this protocol must have the following methods / attributes:
- __init__(*args, **kwargs)
- getFastPropertyValue(handle)[source]
returns the value of the property with the specified name.
- Parameters:
handle (int) – The implementation handle of the implementation for the property.
- Raises:
com.sun.star.beans.UnknownPropertyException –
UnknownPropertyException
com.sun.star.lang.WrappedTargetException –
WrappedTargetException
- Return type:
Any
- setFastPropertyValue(handle, value)[source]
Sets the value to the property with the specified name.
- Parameters:
handle (int) – The implementation handle of the implementation for the property.
value (Any) – The new value for the property.
- Raises:
com.sun.star.beans.UnknownPropertyException –
UnknownPropertyException
com.sun.star.beans.PropertyVetoException –
PropertyVetoException
com.sun.star.lang.IllegalArgumentException –
IllegalArgumentException
com.sun.star.lang.WrappedTargetException –
WrappedTargetException
- Return type:
None