The Wavy
field of the TextDecorationStyle
enumeration represents a wavy or squiggly line style. This style can be used to apply a wavy line decoration to text, similar to the text-decoration-style
CSS property.
The Wavy
field of the TextDecorationStyle
enumeration represents a wavy or squiggly line style. This style can be used to apply a wavy line decoration to text, similar to the text-decoration-style
CSS property.
Use the TextDecorationStyle.Wavy
enumeration value when you want to apply a wavy line decoration to text elements in your UI. This can be particularly useful for indicating spelling errors or for stylistic purposes.
// Example of using TextDecorationStyle.Wavy in a UI component var textElement = new TextElement(); textElement.Style.TextDecoration = TextDecorationStyle.Wavy;