亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何調用shapesApi接口操作Word形狀

發布時間:2020-06-04 11:08:37 來源:億速云 閱讀:209 作者:Leah 欄目:編程語言

這篇文章主要為大家詳細介紹了調用shapesApi接口操作Word形狀的方法,圖文詳解容易學習,非常適合初學者入門,感興趣的小伙伴們可以參考一下。

步驟一:dll文件獲取及導入。通過官網本地下載SDK文件包。(須在e-iceblue中國官網在線編輯板塊中注冊賬號并登錄)

如何調用shapesApi接口操作Word形狀

下載后,解壓文件,將Spire.Cloud.Word.Sdk.dll文件及其他三個dll添加引用至VS程序;或者在程序中通過Nuget搜索下載,直接導入所有dll。dll引用結果如下圖所示:
如何調用shapesApi接口操作Word形狀
步驟二:App ID及Key獲取。在“我的應用”板塊中創建應用以獲得App ID及App Key。
如何調用shapesApi接口操作Word形狀
步驟三:源文檔上傳。在“文檔管理”板塊,上傳源文檔。這里可以建文件夾,將文檔存放在文件夾下。不建文件夾時,源文檔及結果文檔直接保存在根目錄。本文示例中,建了兩個文件夾,分別用于存放源文檔及結果文檔。(云平臺提供免費1 萬次調用次數和 2G 文檔內存)
如何調用shapesApi接口操作Word形狀


C# 代碼示例
1. 添加形狀到Word

using System;
using Spire.Cloud.Word.Sdk.Client;
using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Model;

namespace AddShape
{
    class Program
    {
        static string appId = "App ID";
        static string appKey = "App Key";
        static void Main(string[] args)
        {
            //配置AppID和AppKey
            Configuration wordConfiguration = new Configuration(appId, appKey);

            //實例化ShapesApi類
            ShapesApi shapesApi = new ShapesApi(wordConfiguration);

            string name = "test.docx";//源文檔
            string paragraphPath = "sections/0/paragraphs/0";//段落路徑
            int indexInParagraph = 1;//添加形狀的段落
            string folder = "input";//源文檔所在文件夾
            string storage = null;//使用冰藍云配置的2G空間存貯文檔,可設置為null
            string password = null;//源文檔密碼

            //設置形狀屬性(包括形狀類型、位置、填充顏色、旋轉方向、邊框寬度/顏色、文本環繞類型/方式
            ShapeFormat shapeProperties = new ShapeFormat(50, 50, ShapeFormat.ShapeTypeEnum.Star)
            {
                HorizontalOrigin = ShapeFormat.HorizontalOriginEnum.Page,
                VerticalOrigin = ShapeFormat.VerticalOriginEnum.Page,
                VerticalPosition = 40,
                HorizontalPosition = 230,
                FillColor = new Color(255, 69, 0),
                Rotation = 45,
                StrokeWeight = 2,
                StrokeColor = new Color(255, 255, 0),
                TextWrappingType = ShapeFormat.TextWrappingTypeEnum.Both,
                TextWrappingStyle = ShapeFormat.TextWrappingStyleEnum.InFrontOfText,
                ZOrder = 1
            };
            string destFilePath = "output/AddShape.docx";//結果文檔路徑

            //調用方法添加形狀
            shapesApi.AddShape(name, paragraphPath, shapeProperties, folder, storage, indexInParagraph, password, destFilePath);
        }
    }
}

形狀添加效果:
如何調用shapesApi接口操作Word形狀

2. 刪除Word中的形狀

using System;
using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Client;

namespace DeleteShape
{
    class Program
    {
        static string appId = "App ID";
        static string appKey = "App Key";
        static void Main(string[] args)
        {
            //配置AppID和AppKey
            Configuration wordConfiguration = new Configuration(appId, appKey);

            //實例化ShapesApi類
            ShapesApi shapesApi = new ShapesApi(wordConfiguration);

            string name = "AddShape.docx";//源文檔
            string paragraphPath = "sections/0/paragraphs/0";//段落路徑
            int index = 0;//要刪除形狀的索引
            string folder = "output";//源文檔所在文件夾
            string storage = null;//使用冰藍云配置的2G空間存貯文檔,可設置為null
            string password = null;//源文檔密碼

            string destFilePath = "output/DeleteShape.docx";//結果文檔路徑

            //調用方法刪除形狀
            shapesApi.DeleteShape(name, paragraphPath, index, folder, storage, password, destFilePath);
        }
    }
}

形狀刪除效果:
如何調用shapesApi接口操作Word形狀
3. 讀取Word形狀屬性

using System;
using Spire.Cloud.Word.Sdk.Client;
using Spire.Cloud.Word.Sdk.Api;

namespace GetShapeProperties
{
    class Program
    {
        static string appId = "App ID";
        static string appKey = "App Key";
        static void Main(string[] args)
        {
            //配置AppID和AppKey
            Configuration wordConfiguration = new Configuration(appId, appKey);

            //實例化ShapesApi類
            ShapesApi shapesApi = new ShapesApi(wordConfiguration);

            string name = "AddShape.docx";//源文檔
            string paragraphPath = "sections/0/paragraphs/0"; 
            int index = 0;//讀取的形狀索引
            string folder = "output";//源文檔所在文件夾
            string storage = null;//使用冰藍云配置的2G空間存貯文檔,可設置為null
            string password = null;//源文檔密碼

            //讀取屬性
            System.Console.WriteLine(shapesApi.GetShapeProperties(name, paragraphPath, index, folder, storage, password));
            System.Console.ReadLine();

        }
    }
}

屬性讀取結果:
如何調用shapesApi接口操作Word形狀

以上就是調用shapesApi接口操作Word形狀方法的詳細介紹,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

原平市| 香港| 比如县| 张家界市| 阿鲁科尔沁旗| 义乌市| 泸定县| 呈贡县| 阿合奇县| 门源| 铁岭市| 鹰潭市| 文登市| 南汇区| 扶余县| 济阳县| 襄垣县| 通城县| 忻州市| 铜梁县| 沧源| 泗水县| 吴堡县| 南溪县| 镇原县| 灵川县| 广灵县| 泸水县| 壶关县| 东乡县| 浏阳市| 榆林市| 富平县| 宕昌县| 女性| 中阳县| 临安市| 怀集县| 东方市| 常宁市| 上虞市|