private float pGetMinBottomForSecLn(
cReportSection sec,
String secLnKey,
float minBottom)
{
for (int _i = 0; _i < sec.getSectionLines().count(); _i++) {
cReportSectionLine secLn = sec.getSectionLines().item(_i);
if (secLn.getKey() == secLnKey) { break; }
minBottom = minBottom + secLn.getAspect().getHeight();
}
return minBottom;
}