添加反射效果
让我们创建一个新的 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 "被添加到文档中,并应用了反射效果。最后,保存文档。
有关更多示例和演示,请浏览以下文章: 如何为文本添加反射效果.