public object GetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(property);
            object   returnItem  = Invoker.MethodReturn(this, "GetProperty", paramsArray);

            if ((null != returnItem) && (returnItem is MarshalByRefObject))
            {
                COMObject newObject = NetOffice.Factory.CreateObjectFromComProxy(this, returnItem);
                return(newObject);
            }
            else
            {
                return(returnItem);
            }
        }
 public void SetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property, object value)
 {
     object[] paramsArray = Invoker.ValidateParamsArray(property, value);
     Invoker.Method(this, "SetProperty", paramsArray);
 }
Пример #3
0
 public void SetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property, object value)
 {
     Factory.ExecuteMethod(this, "SetProperty", property, value);
 }
Пример #4
0
 public object GetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property)
 {
     return(Factory.ExecuteVariantMethodGet(this, "GetProperty", property));
 }
Пример #5
0
 public virtual void SetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property, object value)
 {
     InvokerService.InvokeInternal.ExecuteMethod(this, "SetProperty", property, value);
 }
Пример #6
0
 public virtual object GetProperty(NetOffice.VisioApi.Enums.VisDataColumnProperties property)
 {
     return(InvokerService.InvokeInternal.ExecuteVariantMethodGet(this, "GetProperty", property));
 }