if (relativeProperty != null) {
return relativeProperty.getValue(context, subProperty, fobj);
}
/* Now try the shorthand property. */
final PdMargin shorthandProperty = (PdMargin) getProperty(
FoProperty.MARGIN);
if (shorthandProperty != null) {
return shorthandProperty.getValue(context, absoluteDirection, fobj);
}
/* Use the initial value. */
return AbstractRelativeSpace.getValueNoInstance();
}