* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The relative-align property.
*/
public FoValue getRelativeAlign(final FObj fobj, final FoContext context) {
final PdRelativeAlign property = (PdRelativeAlign) getProperty(
FoProperty.RELATIVE_ALIGN);
if (property != null) {
return property.getValue(context, fobj);
}
return PdRelativeAlign.getValueNoInstance(context, fobj);
}