csharp
public enum TextWrapModeWhat to do with a word that is wider than the line it has to fit in.
Fields and properties (3)
WordLet it overflow. CSS's overflow-wrap: normal, and what prose wants.
AnywhereBreak inside the word rather than overflow. CSS's overflow-wrap: anywhere.
BreakWordThe same break, but not at zero. CSS's overflow-wrap: break-word.
Used by (6)
- LineWrapTestsVixen.Ui.Text.Tests
- LineWrapperVixen.Ui.Text
- TextIndentTestsVixen.Ui.Text.Tests
- UiDocumentVixen.Ui
- UiElementVixen.Ui
- WordBreakTestsVixen.Ui.Text.Tests