添加阴影效果
可以用几行代码在Word文档中给文字添加阴影效果。 为了完整性,首先初始化一个名为doc的新WordDocument实例。 然后,创建并配置了一个TextStyle对象,通过将Shadow.OuterShadow1静态命名实例分配给TextEffect属性来加入阴影效果。 文本“Hello World”通过配置的textStyle添加到文档中。 最后,导出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() { ShadowEffect = Shadow.OuterShadow1, }; // Add text with style doc.AddText("Hello World").Style = textStyle; // Export new Word document doc.SaveAs("shadowEffect.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 {.ShadowEffect = Shadow.OuterShadow1} ' Add text with style doc.AddText("Hello World").Style = textStyle ' Export new Word document doc.SaveAs("shadowEffect.docx")
Install-Package IronWord
可以用几行代码在Word文档中给文字添加阴影效果。 为了完整性,首先初始化一个名为doc的新WordDocument实例。 然后,创建并配置了一个TextStyle对象,通过将Shadow.OuterShadow1静态命名实例分配给TextEffect属性来加入阴影效果。 文本“Hello World”通过配置的textStyle添加到文档中。 最后,导出Word文档。
有关更多示例和演示,请访问以下文章:如何为文本添加阴影效果.