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

interface XPropertyAccess

Methods' Summary
getPropertyValues  
setPropertyValues sets the values of given properties.  
Methods' Details
getPropertyValues
sequence< PropertyValue >
getPropertyValues();

Returns
a sequence of all property values within the object in a single call.
setPropertyValues
void
setPropertyValues( [in] sequence< PropertyValue >  aProps )
raises( UnknownPropertyException,
PropertyVetoException,
::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::lang::WrappedTargetException );

Description
sets the values of given properties.

All properties which are not contained in the sequence aProps will be left unchanged.

Top of Page