public LateBindingApi.Excel.Slicer get__Default(object index)
        {
            object[] paramArray = new object[1];
            paramArray[0] = index;
            object returnValue = Invoker.PropertyGet(this, "_Default", paramArray);

            if (null == returnValue)
            {
                return(null);
            }
            LateBindingApi.Excel.Slicer newClass = new LateBindingApi.Excel.Slicer(this, returnValue);
            return(newClass);
        }
        public LateBindingApi.Excel.Slicer Add(object slicerDestination)
        {
            object[] paramArray = new object[1];
            paramArray[0] = slicerDestination;
            object returnValue = Invoker.MethodReturn(this, "Add", paramArray);

            if (null == returnValue)
            {
                return(null);
            }
            LateBindingApi.Excel.Slicer newClass = new LateBindingApi.Excel.Slicer(this, returnValue);
            return(newClass);
        }
        public IEnumerator GetEnumerator()
        {
            object    enumProxy  = Invoker.PropertyGet(this, "_NewEnum");
            COMObject enumerator = new COMObject(this, enumProxy);

            Invoker.Method(enumerator, "Reset", null);
            bool isMoveNextTrue = (bool)Invoker.MethodReturn(enumerator, "MoveNext", null);

            while (true == isMoveNextTrue)
            {
                object itemProxy = Invoker.PropertyGet(enumerator, "Current", null);
                LateBindingApi.Excel.Slicer returnClass = new LateBindingApi.Excel.Slicer(this, itemProxy);
                isMoveNextTrue = (bool)Invoker.MethodReturn(enumerator, "MoveNext", null);
                yield return(returnClass);
            }
        }
        public LateBindingApi.Excel.Slicer Add(object slicerDestination, object level, object name, object caption, object top, object left, object width, object height)
        {
            object[] paramArray = new object[8];
            paramArray[0] = slicerDestination;
            paramArray[1] = level;
            paramArray[2] = name;
            paramArray[3] = caption;
            paramArray[4] = top;
            paramArray[5] = left;
            paramArray[6] = width;
            paramArray[7] = height;
            object returnValue = Invoker.MethodReturn(this, "Add", paramArray);

            if (null == returnValue)
            {
                return(null);
            }
            LateBindingApi.Excel.Slicer newClass = new LateBindingApi.Excel.Slicer(this, returnValue);
            return(newClass);
        }