CSReportDll.cReport.pSetGroupsInCtrlFormulaHideAux C# (CSharp) Метод

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

private pSetGroupsInCtrlFormulaHideAux ( cReportSectionLines scls, int idxGrop ) : void
scls cReportSectionLines
idxGrop int
Результат void
        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);
                        }
                    }
                }
            }
        }
cReport