PdFontStyle property = (PdFontStyle) getProperty(FoProperty.FONT_STYLE);
if (property != null) {
return property.getValue(context, fobj);
}
// Try the shorthand
final PdFont fontProperty = (PdFont) getProperty(FoProperty.FONT);
if (fontProperty != null) {
property = fontProperty.getStyle();
return property.getValue(context, fobj);
}
return PdFontStyle.getValueNoInstance(context, fobj);
}