Решение
public void executeSection()
{
ReportControl rc = this.controlName("itemName");
int height = rc.heightOfWordWrappedString100mm(InventTable.ItemName())
;
super();
rc.height100mmInclBorder(height);
}
Проблема была в том, что rc.height100mmInclBorder(height) вызывался до super().
|