public void _Modify(LateBindingApi.Excel.Enums.XlFormatConditionType type, object _operator, object formula1, object formula2)
 {
     object[] paramArray = new object[4];
     paramArray[0] = type;
     paramArray[1] = _operator;
     paramArray[2] = formula1;
     paramArray[3] = formula2;
     Invoker.Method(this, "_Modify", paramArray);
 }
Esempio n. 2
0
        public COMObject Add(LateBindingApi.Excel.Enums.XlFormatConditionType type)
        {
            object[] paramArray = new object[1];
            paramArray[0] = type;
            object    returnValue  = Invoker.MethodReturn(this, "Add", paramArray);
            COMObject returnObject = LateBindingApi.Core.Factory.CreateObjectFromComProxy(this, returnValue);

            return(returnObject);
        }
Esempio n. 3
0
        public COMObject Add(LateBindingApi.Excel.Enums.XlFormatConditionType type, object _operator, object formula1, object formula2, object _string, object textOperator, object dateOperator, object scopeType)
        {
            object[] paramArray = new object[8];
            paramArray[0] = type;
            paramArray[1] = _operator;
            paramArray[2] = formula1;
            paramArray[3] = formula2;
            paramArray[4] = _string;
            paramArray[5] = textOperator;
            paramArray[6] = dateOperator;
            paramArray[7] = scopeType;
            object    returnValue  = Invoker.MethodReturn(this, "Add", paramArray);
            COMObject returnObject = LateBindingApi.Core.Factory.CreateObjectFromComProxy(this, returnValue);

            return(returnObject);
        }
Esempio n. 4
0
        public LateBindingApi.Excel.FormatCondition Add(LateBindingApi.Excel.Enums.XlFormatConditionType type, object _operator, object formula1, object formula2)
        {
            object[] paramArray = new object[4];
            paramArray[0] = type;
            paramArray[1] = _operator;
            paramArray[2] = formula1;
            paramArray[3] = formula2;
            object returnValue = Invoker.MethodReturn(this, "Add", paramArray);

            if (null == returnValue)
            {
                return(null);
            }
            LateBindingApi.Excel.FormatCondition newClass = new LateBindingApi.Excel.FormatCondition(this, returnValue);
            return(newClass);
        }
 public void _Modify(LateBindingApi.Excel.Enums.XlFormatConditionType type)
 {
     object[] paramArray = new object[1];
     paramArray[0] = type;
     Invoker.Method(this, "_Modify", paramArray);
 }