/* If we got this far, it means that the corresponding absolute margin
* was not specified, so we just need to find the right relative
* indent value and return it. */
AbstractIndent indent = null;
final FoProperty rawPropertyType = AbstractIndent.rawPropertyType(
direction);
indent = (AbstractIndent) getProperty(rawPropertyType);
if (indent == null) {
return AbstractIndent.getValueNoInstance(context, fobj, direction);
}
return indent.getValue(context, fobj);
}