添加反射效果
讓我們創建一個新的 Word 文件並為其添加帶有反射效果的文字。 最初,創建了一個名為doc的新WordDocument對象。 然後實例化一個TextStyle物件,並透過設定其TextEffect屬性為一個新的反射物件來配置包含反射效果。 帶有反射效果的“Hello World”樣式文字已添加到文件中。 最後,文件已儲存。
如需更多範例和示範,請前往以下文章:如何為文字添加反射效果.
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() { ReflectionEffect = new Reflection(), }; // Add text with style doc.AddText("Hello World").Style = textStyle; // Export new Word document doc.SaveAs("reflectionEffect.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 {.ReflectionEffect = New Reflection()} ' Add text with style doc.AddText("Hello World").Style = textStyle ' Export new Word document doc.SaveAs("reflectionEffect.docx")
Install-Package IronWord
讓我們創建一個新的 Word 文件並為其添加帶有反射效果的文字。 最初,創建了一個名為doc的新WordDocument對象。 然後實例化一個TextStyle物件,並透過設定其TextEffect屬性為一個新的反射物件來配置包含反射效果。 帶有反射效果的“Hello World”樣式文字已添加到文件中。 最後,文件已儲存。
如需更多範例和示範,請前往以下文章:如何為文字添加反射效果.