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; }
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; }
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); } } } } }
public void setSectionLines(cReportSectionLines rhs) { m_sectionLines = rhs; }