中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C#中如何設置Word文檔背景

發布時間:2021-11-22 15:00:21 來源:億速云 閱讀:157 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關C#中如何設置Word文檔背景,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Word是我們日常生活、學習和工作中必不可少的文檔處理工具。精致美觀的文檔能在閱讀時帶來視覺上的美感。在本篇文章中,將介紹如何使用組件Free Spire.Doc for .NET(社區版)給Word設置文檔背景。下面的示例中,給Word添加背景分為三種情況來講述,即添加純色背景,漸變色背景和圖片背景。
工具使用:下載安裝控件Free Spire.Doc后,在項目程序中添加Spire.Doc.dll即可(該dll可在安裝文件下Bin文件夾中獲取)

一、添加純色背景

C#

using Spire.Doc;
using System.Drawing;

namespace AddBackground
{
    class Program
    {
        static void Main(string[] args)
        {
            //創建一個Document類對象,并加載Word文檔
            Document document = new Document();
            document.LoadFromFile(@"C:\Users\Administrator\Desktop\Test.docx");

            //設置文檔的背景填充模式為顏色填充
            document.Background.Type = Spire.Doc.Documents.BackgroundType.Color;

            //設置背景顏色
            document.Background.Color = Color.MistyRose;

            //保存并打開文檔
            document.SaveToFile("PureBackground.docx", FileFormat.Docx2013);
            System.Diagnostics.Process.Start("PureBackground.docx");
        }
    }
}

調試運行程序后,生成文檔
C#中如何設置Word文檔背景

二、添加漸變色背景

C#

using Spire.Doc;
using System.Drawing;
using Spire.Doc.Documents;

namespace AddGradientBackground
{
    class Program
    {
        static void Main(string[] args)
        {
            //創建一個Document類對象,并加載Word文檔
            Document document = new Document();
            document.LoadFromFile(@"C:\Users\Administrator\Desktop\Test.docx");

            //設置文檔的背景填充模式為漸變填充
            document.Background.Type = Spire.Doc.Documents.BackgroundType.Gradient;

            //設置漸變背景顏色
            BackgroundGradient gradient = document.Background.Gradient;
            gradient.Color1 = Color.LightSkyBlue;
            gradient.Color2 = Color.PaleGreen;

            //設置漸變模式
            gradient.ShadingVariant = GradientShadingVariant.ShadingMiddle;
            gradient.ShadingStyle = GradientShadingStyle.FromCenter;

            //保存并打開文檔
            document.SaveToFile("GradientColor.docx", FileFormat.Docx2013);
            System.Diagnostics.Process.Start("GradientColor.docx");
        }
    }
}

C#中如何設置Word文檔背景

三、添加圖片背景

C#

using System.Drawing;
using Spire.Doc;

namespace ImageBackground
{
    class Program
    {
        static void Main(string[] args)
        {
            //創建一個Document類對象,并加載Word文檔
            Document document = new Document();
            document.LoadFromFile(@"C:\Users\Administrator\Desktop\Test.docx");

            //設置文檔的背景填充模式為圖片填充
            document.Background.Type = Spire.Doc.Documents.BackgroundType.Picture;

            //設置背景圖片
            document.Background.Picture = Image.FromFile(@"C:\Users\Administrator\Desktop\1.jpg");

            //保存并打開文檔
            document.SaveToFile("ImageBackground.docx", FileFormat.Docx2013);
            System.Diagnostics.Process.Start("ImageBackground.docx");
        }
    }
}

C#中如何設置Word文檔背景

關于“C#中如何設置Word文檔背景”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

山东| 聂荣县| 邹城市| 汝南县| 义马市| 常熟市| 新宾| 乌苏市| 华坪县| 阿尔山市| 大竹县| 林甸县| 红原县| 广宗县| 淳安县| 修文县| 乃东县| 西乡县| 康乐县| 板桥市| 循化| 宝应县| 桐柏县| 治县。| 始兴县| 英山县| 梁山县| 阿荣旗| 山丹县| 来宾市| 依安县| 保定市| 北碚区| 枣阳市| 湘西| 宝应县| 内江市| 肃宁县| 扎兰屯市| 乡城县| 紫阳县|