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

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

private pGetSecLnFromKey ( String secKey, cIReportGroupSections sections, cReportSection &rtnSec ) : cReportSectionLine
secKey String
sections cIReportGroupSections
rtnSec CSReportDll.cReportSection
Результат CSReportDll.cReportSectionLine
        private cReportSectionLine pGetSecLnFromKey(
            String secKey, 
			cIReportGroupSections sections, 
            out cReportSection rtnSec) 
        { 
            cReportSection sec = null;
			rtnSec = null;
			for (int _i = 0; _i < sections.count(); _i++) {
				sec = sections.item(_i);
				if (sec.getSectionLines().item(secKey) != null) {
                    rtnSec = sec;
                    return sec.getSectionLines().item(secKey);
                }
            }
			return null;
        }
cEditor