robot_2Generated
code_blocksInput

Description

The TextTransform.None field is a member of the TextTransform enumeration within the Sandbox.UI namespace. It represents the default state where no text transformation is applied. This is equivalent to the CSS text-transform: none; property, meaning the text will be displayed as it is without any changes to its case or capitalization.

Usage

Use TextTransform.None when you want to ensure that the text remains in its original form without any automatic capitalization or case changes. This is useful when you want to preserve the original formatting of the text as provided by the user or data source.

Example

// Example of using TextTransform.None in a UI component
var label = new Label();
label.Text = "This is a sample text.";
label.TextTransform = TextTransform.None; // No transformation applied

// The text will be displayed exactly as "This is a sample text."