244245246247248249250251252253254
* * @author Miriam Sutter */ public boolean isFontItalic() throws TextException { try { FontSlant help = (FontSlant) getXPropertySet().getPropertyValue( "CharPosture"); if (help == FontSlant.ITALIC) { return true; } else {
236237238239240241242243244245246
* * @author Miriam Sutter */ public boolean isFontItalic() throws TextException { try { FontSlant help = (FontSlant)getXPropertySet().getPropertyValue("CharPosture"); if(help == FontSlant.ITALIC) { return true; } else {