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

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

private pValidateSectionAspect ( ) : void
Результат void
        private void pValidateSectionAspect() {
            cReportSection sec = null;
            float top = 0;
            int i = 0;

            for (int _i = 0; _i < m_report.getHeaders().count(); _i++) {
                sec = m_report.getHeaders().item(_i);
                top = pValidateSectionAspecAux(top, sec);
            }

            for (int _i = 0; _i < m_report.getGroupsHeaders().count(); _i++) {
                sec = m_report.getGroupsHeaders().item(_i);
                top = pValidateSectionAspecAux(top, sec);
            }

            for (int _i = 0; _i < m_report.getDetails().count(); _i++) {
                sec = m_report.getDetails().item(_i);
                top = pValidateSectionAspecAux(top, sec);
            }

            for (int _i = 0; _i < m_report.getGroupsFooters().count(); _i++) {
                sec = m_report.getGroupsFooters().item(_i);
                top = pValidateSectionAspecAux(top, sec);
            }

            cReportPaperInfo w_paperInfo = m_report.getPaperInfo();
            top = CSReportPaint.cGlobals.getRectFromPaperSize(m_report.getPaperInfo(), 
                                                    w_paperInfo.getPaperSize(), 
                                                    w_paperInfo.getOrientation()).Height;

            for (i = m_report.getFooters().count(); i <= 1; i--) {
                sec = m_report.getFooters().item(i);
                top = top - sec.getAspect().getHeight();
                pValidateSectionAspecAux(top, sec);
            }
        }
cEditor