Ejemplo n.º 1
0
            public override object?GetNthMask(int index)
            {
                Cell_FieldIndex enu = (Cell_FieldIndex)index;

                switch (enu)
                {
                default:
                    return(base.GetNthMask(index));
                }
            }
Ejemplo n.º 2
0
            public override void SetNthMask(int index, object obj)
            {
                Cell_FieldIndex enu = (Cell_FieldIndex)index;

                switch (enu)
                {
                default:
                    base.SetNthMask(index, obj);
                    break;
                }
            }
Ejemplo n.º 3
0
            public override void SetNthException(int index, Exception ex)
            {
                Cell_FieldIndex enu = (Cell_FieldIndex)index;

                switch (enu)
                {
                default:
                    base.SetNthException(index, ex);
                    break;
                }
            }