public void DrillAction(PossibleDrillActions Mode)
        {
            DebugLogging.WriteLine("MemberCell.DrillAction({0})", Mode);

            if ((Mode & PossibleDrillActions) != Mode)
            {
                var S = "";
                if (Mode == PossibleDrillActions.esCollapsed)
                {
                    S = RadarUtils.GetResStr("rsDrillAction0");
                }
                if (Mode == PossibleDrillActions.esParentChild)
                {
                    S = RadarUtils.GetResStr("rsDrillAction1");
                }
                if (Mode == PossibleDrillActions.esNextLevel)
                {
                    S = RadarUtils.GetResStr("rsDrillAction2");
                }
                if (Mode == PossibleDrillActions.esNextHierarchy)
                {
                    S = RadarUtils.GetResStr("rsDrillAction3");
                }

                throw new Exception(
                          string.Format(RadarUtils.GetResStr("rsInadmissibleDrillAction"), S, Value));
            }

            CellSet.DrillAction_Inner(Mode, RealMember);
        }
Exemplo n.º 2
0
 public void ExpandNodesAnywhere(PossibleDrillActions Mode, Level toLevel)
 {
     fCellSet.ExpandNodesAnywhere(Mode, Level, toLevel);
 }
Exemplo n.º 3
0
 public void ExpandAllNodes(PossibleDrillActions Mode)
 {
     fCellSet.ExpandAllNodes(Mode, fCSL.FLevel);
 }
 internal void ExpandNodesAnywhere(PossibleDrillActions Mode, Level toLevel)
 {
     CellSet.DrillAnywhereAction_Inner(Mode, RealMember, toLevel);
 }
Exemplo n.º 5
0
 internal AllowDrillActionEventArgs(IMemberCell cell, PossibleDrillActions actions)
 {
     Cell    = cell;
     Actions = actions;
 }