Add Glow Effect Adding Glow Effect to Text Applying a glow effect to text in IronWord is accomplished by configuring the TextEffect property of a TextStyle object. The glow effect creates a luminous border around text, with customizable color and radius properties to control the visual appearance. To create a glow effect, instantiate a TextStyle and assign a TextEffect object with a configured Glow instance. The Glow object accepts properties like GlowColor to specify the color of the glow and GlowRadius to control the spread of the effect. Higher radius values produce more diffused glows, while lower values create tighter halos around the text. After configuring the text style, create a Run object containing the desired TextContent and assign the configured style to the Run. Use AddChild to add the styled run to a paragraph, then add the paragraph to the document. This follows the document hierarchy: Document → Paragraph → Run → TextContent. Code Explanation The above code snippet demonstrates how to create a new Word document and apply a text style with a glow effect. First, a new Word document is instantiated and stored in the variable doc. Then, a new TextStyle object named textStyle is created. This text style is configured to include a glow effect by initializing a TextEffect object with specific settings. To add the styled text with the glow effect, a Paragraph is created, then a Run object is created containing TextContent with "Hello World". The textStyle is assigned to the Run, which applies the glow effect. The Run is added to the Paragraph using AddChild, and finally the Paragraph is added to the document. This multi-step approach follows the document hierarchy: Document → Paragraph → Run → TextContent. Finally, the Word document is exported as a new file. For more examples and demonstrations, please navigate to the following article: How to Add Glow Effect to Text. Learn More About Document Elements in IronWord Related Docs Links View on Github Related Tutorial Related How-To Guide Class Documentation Download IronWord DLL Report an Issue on this page Ready to Get Started? Nuget Downloads 34,681 | Version: 2026.3 just released Start Free Trial Free NuGet Download Total downloads: 34,681 View Licenses Still Scrolling? Want proof fast? PM > Install-Package IronWord run a sample watch your data become a Word doc. Free NuGet Download Total downloads: 34,681 View Licenses
All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)