if (absoluteProperty != null) {
return absoluteProperty.getValue(context, fobj);
}
/* Now try the relative-direction property. */
final AbstractRelativeSpace relativeProperty =
(AbstractRelativeSpace) getProperty(relativePropertyEnum);
if (relativeProperty != null) {
return relativeProperty.getValue(context, subProperty, fobj);
}
/* Now try the shorthand property. */
final PdMargin shorthandProperty = (PdMargin) getProperty(
FoProperty.MARGIN);