robot_2Generated
code_blocksInput

Description

The TextDecorationStyle.Double field is a member of the TextDecorationStyle enumeration within the Sandbox.UI namespace. It represents a text decoration style where two solid lines are drawn, typically used in styling text elements in a user interface.

Usage

Use TextDecorationStyle.Double when you want to apply a double line text decoration to a UI element. This can be useful for emphasizing text or creating a specific visual style in your application.

Example

// Example of using TextDecorationStyle.Double in a UI component
var label = new Label();
label.Text = "Important Text";
label.Style.TextDecoration = TextDecorationStyle.Double;