CSReportDll.cReportSection.getSectionLines C# (CSharp) Méthode

getSectionLines() public méthode

public getSectionLines ( ) : cReportSectionLines
Résultat cReportSectionLines
        public cReportSectionLines getSectionLines()
        {
            return m_sectionLines;
        }

Usage Example

 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;
 }
All Usage Examples Of CSReportDll.cReportSection::getSectionLines