コード例 #1
0
ファイル: PivotData.cs プロジェクト: zyfzgt/NetOffice
        public NetOffice.OWC10Api.PivotRange get_Range(NetOffice.OWC10Api.PivotCell topLeft, NetOffice.OWC10Api.PivotCell bottomRight)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(topLeft, bottomRight);
            object   returnItem  = Invoker.PropertyGet(this, "Range", paramsArray);

            NetOffice.OWC10Api.PivotRange newObject = Factory.CreateKnownObjectFromComProxy(this, returnItem, NetOffice.OWC10Api.PivotRange.LateBindingApiWrapperType) as NetOffice.OWC10Api.PivotRange;
            return(newObject);
        }
コード例 #2
0
        public NetOffice.OWC10Api.PivotCell get_Cells(NetOffice.OWC10Api.PivotRowMember row, NetOffice.OWC10Api.PivotColumnMember column)
        {
            object[] paramsArray = Invoker.ValidateParamsArray(row, column);
            object   returnItem  = Invoker.PropertyGet(this, "Cells", paramsArray);

            NetOffice.OWC10Api.PivotCell newObject = NetOffice.Factory.CreateKnownObjectFromComProxy(this, returnItem, NetOffice.OWC10Api.PivotCell.LateBindingApiWrapperType) as NetOffice.OWC10Api.PivotCell;
            return(newObject);
        }
コード例 #3
0
ファイル: PivotClassFactory.cs プロジェクト: zyfzgt/NetOffice
        public object get_NewCell(NetOffice.OWC10Api.PivotCell cell)
        {
            object[]  paramsArray = Invoker.ValidateParamsArray(cell);
            object    returnItem  = Invoker.PropertyGet(this, "NewCell", paramsArray);
            COMObject newObject   = Factory.CreateObjectFromComProxy(this, returnItem);

            return(newObject);
        }
コード例 #4
0
 public object NewCell(NetOffice.OWC10Api.PivotCell cell)
 {
     return(get_NewCell(cell));
 }
コード例 #5
0
 public object get_NewCell(NetOffice.OWC10Api.PivotCell cell)
 {
     return(Factory.ExecuteReferencePropertyGet(this, "NewCell", cell));
 }
コード例 #6
0
ファイル: PivotData.cs プロジェクト: zyfzgt/NetOffice
 public NetOffice.OWC10Api.PivotRange Range(NetOffice.OWC10Api.PivotCell topLeft, NetOffice.OWC10Api.PivotCell bottomRight)
 {
     return(get_Range(topLeft, bottomRight));
 }
コード例 #7
0
 public NetOffice.OWC10Api.PivotRange get_Range(NetOffice.OWC10Api.PivotCell topLeft, NetOffice.OWC10Api.PivotCell bottomRight)
 {
     return(Factory.ExecuteKnownReferencePropertyGet <NetOffice.OWC10Api.PivotRange>(this, "Range", NetOffice.OWC10Api.PivotRange.LateBindingApiWrapperType, topLeft, bottomRight));
 }