getProperty(FoProperty.ALIGNMENT_ADJUST);
if (property != null) {
return property.traitValueAmount(context, fobj, inlineContext);
}
/* Try the shorthand property. */
final PdVerticalAlign va = (PdVerticalAlign) getProperty(FoProperty.VERTICAL_ALIGN);
if (va != null) {
return va.getAlignmentAdjust(fobj, context, inlineContext);
}
return PdAlignmentAdjust.traitValueNoInstance();
}