Ejemplo n.º 1
0
 private void releaseReferences()
 {
     if (m_sectionLines != null)
     {
         if (m_sectionLines.getCopyColl() != null)
         {
             m_sectionLines.getCopyColl().clear();
             m_sectionLines.setCopyColl(null);
         }
         m_sectionLines = null;
     }
     m_aspect      = null;
     m_formulaHide = null;
 }
Ejemplo n.º 2
0
        private float pGetMinBottomWithSecLn(cReportSectionLines secLns, float minBottom) { 
            int i = 0;

            for (i = 1; i <= secLns.count() - 1; i++) {
                minBottom = minBottom + secLns.item(i).getAspect().getHeight();
            }

            return minBottom;
        }
Ejemplo n.º 3
0
        private void pSetGroupsInCtrlFormulaHideAux(cReportSectionLines scls, int idxGrop)
        { // TODO: Use of ByRef founded Private Sub pSetGroupsInCtrlFormulaHideAux(ByRef Scls As cReportSectionLines, ByVal IdxGrop As Integer)
            cReportSectionLine scl = null;
            cReportControl ctrl = null;

            for (int _i = 0; _i < scls.count(); _i++)
            {
                scl = scls.item(_i);
                for (int _j = 0; _j < scl.getControls().count(); _j++)
                {
                    ctrl = scl.getControls().item(_j);
                    if (ctrl.getHasFormulaHide())
                    {
                        if (ctrl.getFormulaHide().getIdxGroup() == 0)
                        {
                            ctrl.getFormulaHide().setIdxGroup(idxGrop);
                        }
                    }
                }
            }
        }
Ejemplo n.º 4
0
 public void setSectionLines(cReportSectionLines rhs)
 {
     m_sectionLines = rhs;
 }
Ejemplo n.º 5
0
 private void releaseReferences()
 {
     if (m_sectionLines != null)
     {
         if (m_sectionLines.getCopyColl() != null)
         {
             m_sectionLines.getCopyColl().clear();
             m_sectionLines.setCopyColl(null);
         }
         m_sectionLines = null;
     }
     m_aspect = null;
     m_formulaHide = null;
 }
Ejemplo n.º 6
0
 public void setSectionLines(cReportSectionLines rhs)
 {
     m_sectionLines = rhs;
 }