public void setPropertyValue(String name, Object value) throws UnknownPropertyException,
PropertyVetoException, com.sun.star.lang.IllegalArgumentException, WrappedTargetException
{
Property prop= getProperty(name);
if (prop == null)
throw new UnknownPropertyException("Property " + name + " is unknown");
setPropertyValue(prop, value);
}