添加漸變效果
上述程式碼展示了如何將漸變效果應用於文字。首先,它建立了一個新的 Word 文件。然後,它創建了一個 TextStyle 物件,並通過將 Gradient.DefaultGray 預設值分配給 GradientEffect 屬性來配置它以使用漸變效果。這個配置好的 textStyle 接著被應用於新增到文件中的文字 “Hello World”。最後,新的 Word 文件被匯出。
有更多範例和演示,請瀏覽以下文章: 如何向文本添加漸變效果.
using IronWord; using IronWord.Models; // Create new Word document WordDocument doc = new WordDocument(); // Create and configure text style TextStyle textStyle = new TextStyle(); textStyle.TextEffect = new TextEffect() { GradientEffect = Gradient.DefaultGray, }; // Add text with style doc.AddText("Hello World").Style = textStyle; // Export new Word document doc.SaveAs("gradientEffect.docx");
Imports IronWord Imports IronWord.Models ' Create new Word document Private doc As New WordDocument() ' Create and configure text style Private textStyle As New TextStyle() textStyle.TextEffect = New TextEffect() With {.GradientEffect = Gradient.DefaultGray} ' Add text with style doc.AddText("Hello World").Style = textStyle ' Export new Word document doc.SaveAs("gradientEffect.docx")
Install-Package IronWord
上述程式碼展示了如何將漸變效果應用於文字。首先,它建立了一個新的 Word 文件。然後,它創建了一個 TextStyle 物件,並通過將 Gradient.DefaultGray 預設值分配給 GradientEffect 屬性來配置它以使用漸變效果。這個配置好的 textStyle 接著被應用於新增到文件中的文字 “Hello World”。最後,新的 Word 文件被匯出。
有更多範例和演示,請瀏覽以下文章: 如何向文本添加漸變效果.