* Indicates whether this object's inline-progression-dimension is "auto".
* @param fobj The FObj to which the property belongs.
* @return True iff this object's inline-progression-dimension is "auto".
*/
public boolean isIpdAuto(final FObj fobj) {
final PdInlineProgressionDimension property =
(PdInlineProgressionDimension) getProperty(
FoProperty.INLINE_PROGRESSION_DIMENSION);
if (property == null) {
/* The property is not inherited, and the initial value is
* "auto". */
return true;
}
return property.isAuto(fobj);
}