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

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

private paintStandarSections ( ) : void
Результат void
        private void paintStandarSections() {
            cReportPaintObject paintSec = null;
            cReportSections w_headers = m_report.getHeaders();
            cReportSection w_item = w_headers.item(cGlobals.C_KEY_HEADER);
            
            w_item.setKeyPaint(paintSection(m_report.getHeaders().item(cGlobals.C_KEY_HEADER).getAspect(), 
                                            cGlobals.C_KEY_HEADER,
                                            csRptTypeSection.CSRPTTPMAINSECTIONHEADER, 
                                            "Header 1", false));
            
            paintSec = m_paint.getPaintSections().item(w_item.getKeyPaint());
            paintSec.setHeightSec(w_item.getAspect().getHeight());

            pAddPaintSetcionForSecLn(w_headers.item(cGlobals.C_KEY_HEADER), 
                                                    csRptTypeSection.C_KEY_SECLN_HEADER);

            cReportSections w_details = m_report.getDetails();
            w_item = w_details.item(cGlobals.C_KEY_DETAIL);

            w_item.setKeyPaint(paintSection(m_report.getDetails().item(cGlobals.C_KEY_DETAIL).getAspect(), 
                                            cGlobals.C_KEY_DETAIL,
                                            csRptTypeSection.CSRPTTPMAINSECTIONDETAIL, 
                                            "Detail", false));
            
            paintSec = m_paint.getPaintSections().item(w_item.getKeyPaint());
            paintSec.setHeightSec(w_item.getAspect().getHeight());
            
            pAddPaintSetcionForSecLn(w_details.item(cGlobals.C_KEY_DETAIL), 
                                        csRptTypeSection.C_KEY_SECLN_DETAIL);

            cReportSections w_footers = m_report.getFooters();
            w_item = w_footers.item(cGlobals.C_KEY_FOOTER);

            w_item.setKeyPaint(paintSection(m_report.getFooters().item(cGlobals.C_KEY_FOOTER).getAspect(), 
                                            cGlobals.C_KEY_FOOTER,
                                            csRptTypeSection.CSRPTTPMAINSECTIONFOOTER, 
                                            "Footer 1", false));

            paintSec = m_paint.getPaintSections().item(w_item.getKeyPaint());
            paintSec.setHeightSec(w_item.getAspect().getHeight());
            pAddPaintSetcionForSecLn(w_footers.item(cGlobals.C_KEY_FOOTER), csRptTypeSection.C_KEY_SECLN_FOOTER);
        }
cEditor