* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The text-indent property.
*/
public int getTextIndent(final FObj fobj, final FoContext context) {
final PdTextIndent property = (PdTextIndent) getProperty(
FoProperty.TEXT_INDENT);
if (property != null) {
return property.getValue(context, fobj);
}
return PdTextIndent.getValueNoInstance(context, fobj);
}