:: com :: sun :: star :: beans ::

constants group TolerantPropertySetResultType

Constants
SUCCESS the property has been successfully set or retrieved.  
UNKNOWN_PROPERTY the property is not available.  
ILLEGAL_ARGUMENT the value used with the property is not valid.  
PROPERTY_VETO the property could not be changed at that time.  
WRAPPED_TARGET a com::sun::star::lang::WrappedTargetException did occur.  
UNKNOWN_FAILURE the operation failed and the reason is not known.  
Constants' Details
SUCCESS
const short SUCCESS = 0;
Description
the property has been successfully set or retrieved.
UNKNOWN_PROPERTY
const short UNKNOWN_PROPERTY = 1;
Description
the property is not available.

For example if a com::sun::star::beans::UnknownPropertyException was caught.

ILLEGAL_ARGUMENT
const short ILLEGAL_ARGUMENT = 2;
Description
the value used with the property is not valid.

For example if a com::sun::star::lang::IllegalArgumentException was caught.

PROPERTY_VETO
const short PROPERTY_VETO = 3;
Description
the property could not be changed at that time.

For example if a com::sun::star::beans::PropertyVetoException was caught.

WRAPPED_TARGET
const short WRAPPED_TARGET = 4;
Description
a com::sun::star::lang::WrappedTargetException did occur.
UNKNOWN_FAILURE
const short UNKNOWN_FAILURE = 5;
Description
the operation failed and the reason is not known.
Top of Page