* Returns the allowed-height-scale property.
* @param fobj The FObj to which the property belongs.
* @return The allowed-height-scale property.
*/
public float[] traitAllowedHeightScale(final FObj fobj) {
final PdAllowedHeightScale property =
(PdAllowedHeightScale) getProperty(
FoProperty.ALLOWED_HEIGHT_SCALE);
if (property != null) {
return property.traitValue(fobj);
}
return PdAllowedHeightScale.traitValueNoInstance(fobj);
}