예제 #1
0
        public void GoGoCreateColumnAction(object target, string tableValue)
        {
            if (tableValue == ConstantStrings.IgnoreCell)
            {
                return;
            }

            if (deepAction != null)
            {
                deepAction.GoGoCreateColumnAction(Info.GetValue(target, null), tableValue);
            }
        }
예제 #2
0
        public void GoGoCreateColumnAction(object target, string tableValue)
        {
            if (tableValue == ConstantStrings.IgnoreCell)
            {
                return;
            }

            var value = GetActual(target);

            // should never happen....
            if (_deepAction != null)
            {
                _deepAction.GoGoCreateColumnAction(value, tableValue);
            }
        }