* issues.
* @return The border-separation (IPD) property.
*/
public int getBorderSeparationIPD(final FObj fobj,
final FoContext context) {
PdBorderSeparation property = (PdBorderSeparation)
getProperty(FoProperty.BORDER_SEPARATION);
if (property == null) {
final PdBorderSpacing borderSpacing = (PdBorderSpacing) getProperty(
FoProperty.BORDER_SPACING);
property = borderSpacing.getBorderSeparation();
}
if (property != null) {
return property.getValue(context, RelativeAxis.INLINE_PROGRESSION,
fobj);
}
return PdBorderSeparation.getValueNoInstance(context,
RelativeAxis.INLINE_PROGRESSION, fobj);
}