Vixen
dd8b0a81
csharp
public enum TextWrapMode

What to do with a word that is wider than the line it has to fit in.

Read the guide page for this →

Fields and properties (3)

  • Word

    Let it overflow. CSS's overflow-wrap: normal, and what prose wants.

  • Anywhere

    Break inside the word rather than overflow. CSS's overflow-wrap: anywhere.

  • BreakWord

    The 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