* @param subProperty The length-range value.
* @return The specified component of the word-spacing property.
*/
private int getWordSpacing(final FObj fobj, final FoContext context,
final LengthRange subProperty) {
final PdWordSpacing property = (PdWordSpacing) getProperty(
FoProperty.WORD_SPACING);
if (property != null) {
return property.getValue(context, subProperty, fobj);
}
return PdWordSpacing.getValueNoInstance(context, subProperty, fobj);
}