CSReportEditor.cEditor.pGetSecHeigthFromSecLines C# (CSharp) Метод

pGetSecHeigthFromSecLines() приватный Метод

private pGetSecHeigthFromSecLines ( cReportSection sec ) : float
sec CSReportDll.cReportSection
Результат float
        private float pGetSecHeigthFromSecLines(cReportSection sec) {
            float rtn = 0;

            for (int _i = 0; _i < sec.getSectionLines().count(); _i++) {
                cReportSectionLine secLn = sec.getSectionLines().item(_i);
                rtn = rtn + secLn.getAspect().getHeight();
            }

            return rtn;
        }
cEditor