* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The text-align property.
*/
public FoValue getTextAlign(final FObj fobj, final FoContext context) {
final PdTextAlign property = (PdTextAlign) getProperty(
FoProperty.TEXT_ALIGN);
if (property == null) {
return PdTextAlign.getValueNoInstance(context, fobj);
}
return property.getValue(context, fobj);
}