public void setFontColor(int color) throws TextException {
try {
getXPropertySet().setPropertyValue("CharColor", new Integer(color));
} catch (Exception excep) {
TextException textException = new TextException(excep.getMessage());
textException.initCause(excep);
throw textException;
}
}
// ----------------------------------------------------------------------------