robot_2Generated
code_blocksInput

Description

The Wavy field of the TextDecorationStyle enumeration represents a wavy or squiggly line style. This style can be used to apply a wavy line as a text decoration, similar to the text-decoration-style CSS property in web development.

Usage

Use the TextDecorationStyle.Wavy field when you want to apply a wavy line decoration to text elements in your UI. This can be particularly useful for emphasizing text or indicating spelling errors, similar to how wavy lines are used in text editors.

Example

// Example of using TextDecorationStyle.Wavy in a UI component
var textElement = new TextElement();
textElement.DecorationStyle = TextDecorationStyle.Wavy;

// This will render the text with a wavy underline style.