robot_2Generated
code_blocksInput

Description

The TextSkipInk.None field is a member of the TextSkipInk enumeration within the Sandbox.UI namespace. This field represents a setting where all glyphs are overlapped, meaning that the text decoration will not skip any ink, and all parts of the text will be underlined or decorated as specified.

Usage

Use TextSkipInk.None when you want to ensure that text decorations such as underlines do not skip over any glyphs, providing a continuous decoration across the text.

Example

// Example of using TextSkipInk.None in a UI component
var textStyle = new TextStyle();
textStyle.TextDecorationSkipInk = TextSkipInk.None;

// Apply the style to a UI element
var label = new Label();
label.Style = textStyle;
label.Text = "This is a sample text with continuous underline.";