CSReportEditor.cEditor.pGetMinBottomForSecLn C# (CSharp) 메소드

pGetMinBottomForSecLn() 개인적인 메소드

private pGetMinBottomForSecLn ( cReportSection sec, String secLnKey, float minBottom ) : float
sec CSReportDll.cReportSection
secLnKey String
minBottom float
리턴 float
        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;
        }
cEditor