コード例 #1
0
ファイル: IDiagram.cs プロジェクト: krishkhan/NetOffice-NuGet
        public Int32 Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(type);
            object   returnItem  = Invoker.MethodReturn(this, "Convert", paramsArray);

            return(NetRuntimeSystem.Convert.ToInt32(returnItem));
        }
コード例 #2
0
        public NetOffice.OfficeApi.Shape AddDiagram(NetOffice.OfficeApi.Enums.MsoDiagramType type, Single left, Single top, Single width, Single height)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(type, left, top, width, height);
            object   returnItem  = Invoker.MethodReturn(this, "AddDiagram", paramsArray);

            NetOffice.OfficeApi.Shape newObject = Factory.CreateKnownObjectFromComProxy(this, returnItem, NetOffice.OfficeApi.Shape.LateBindingApiWrapperType) as NetOffice.OfficeApi.Shape;
            return(newObject);
        }
コード例 #3
0
 public void Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
 {
     object[] paramsArray = Invoker.ValidateParamsArray(type);
     Invoker.Method(this, "Convert", paramsArray);
 }
コード例 #4
0
ファイル: IMsoDiagram.cs プロジェクト: tinmanjk/NetOffice
 public virtual void Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
 {
     InvokerService.InvokeInternal.ExecuteMethod(this, "Convert", type);
 }
コード例 #5
0
ファイル: IShapes.cs プロジェクト: toroerp/NetOffice
 public virtual NetOffice.ExcelApi.Shape AddDiagram(NetOffice.OfficeApi.Enums.MsoDiagramType type, Single left, Single top, Single width, Single height)
 {
     return(InvokerService.InvokeInternal.ExecuteKnownReferenceMethodGet <NetOffice.ExcelApi.Shape>(this, "AddDiagram", typeof(NetOffice.ExcelApi.Shape), new object[] { type, left, top, width, height }));
 }
コード例 #6
0
ファイル: IDiagram.cs プロジェクト: toroerp/NetOffice
 public virtual Int32 Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
 {
     return(InvokerService.InvokeInternal.ExecuteInt32MethodGet(this, "Convert", type));
 }
コード例 #7
0
ファイル: Shapes.cs プロジェクト: realzhaorong/NetOffice
 public NetOffice.OfficeApi.Shape AddDiagram(NetOffice.OfficeApi.Enums.MsoDiagramType type, Single left, Single top, Single width, Single height)
 {
     return(Factory.ExecuteKnownReferenceMethodGet <NetOffice.OfficeApi.Shape>(this, "AddDiagram", NetOffice.OfficeApi.Shape.LateBindingApiWrapperType, new object[] { type, left, top, width, height }));
 }
コード例 #8
0
 public void Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
 {
     Factory.ExecuteMethod(this, "Convert", type);
 }
コード例 #9
0
ファイル: IDiagram.cs プロジェクト: realzhaorong/NetOffice
 public Int32 Convert(NetOffice.OfficeApi.Enums.MsoDiagramType type)
 {
     return(Factory.ExecuteInt32MethodGet(this, "Convert", type));
 }