TextTrimming Enum
Definition
Describes how text is trimmed when it overflows the edge of its containing box.
public enum class TextTrimming
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.WebHostHidden]
enum TextTrimming
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.WebHostHidden]
public enum TextTrimming
Public Enum TextTrimming
<object property="enumMemberName"/>
- Inheritance
-
TextTrimming
- Attributes
-
Windows.Foundation.Metadata.ContractVersionAttribute Windows.Foundation.Metadata.WebHostHiddenAttribute
Fields
CharacterEllipsis | 1 | Text is trimmed at a character boundary. An ellipsis (...) is drawn in place of remaining text. |
Clip | 3 | Text is trimmed at a pixel level, visually clipping the excess glyphs. |
None | 0 | Default. Text is truncated at a word boundary. No trim indicator is drawn and the RichTextBlock /@"Microsoft.UI.Xaml.Controls.TextBlock?text=TextBlock" IsTextTrimmedChanged event does not fire. |
WordEllipsis | 2 | Text is trimmed at a word boundary. An ellipsis (...) is drawn in place of remaining text. |