ooodev.adapter.beans.fast_property_set_t module
- protocol ooodev.adapter.beans.fast_property_set_t.FastPropertySetT[source]
Bases:
ProtocolProtocol 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 –
UnknownPropertyExceptioncom.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 –
UnknownPropertyExceptioncom.sun.star.beans.PropertyVetoException –
PropertyVetoExceptioncom.sun.star.lang.IllegalArgumentException –
IllegalArgumentExceptioncom.sun.star.lang.WrappedTargetException –
WrappedTargetException
- Return type:
None