* @param context An object that knows how to resolve FO Tree context
* issues.
* @return The scaling property.
*/
public FoValue getScaling(final FObj fobj, final FoContext context) {
final PdScaling property = (PdScaling) getProperty(
FoProperty.SCALING);
if (property != null) {
return property.getValue(context, fobj);
}
return PdScaling.getValueNoInstance();
}