Blazor MultiColumn ComboBox Example - Text Wrapping
This example demonstrates the TextWrap feature of the Blazor MultiColumn ComboBox, which specifies how words should break when reaching the end of a line, ensuring that content and headers wrap appropriately based on the specified wrapping options.
The TextWrap feature of the Blazor MultiColumn ComboBox can be achieved by setting EnableTextWrap to true and configuring the TextWrapElement and TextOverflowMode enums to control how the content is displayed based on your preferences.
Both
- Wraps both the header and content.Header
- Wraps only the header.Content
- Wraps only the content.
TextWrapElement is an enum Defines the element where text wrapping is applied.
Ellipsis
- Displays an ellipsis (...) when the content overflows its area.EllipsisWithTooltip
- Displays an ellipsis (...) when the content overflows its area, and it also shows a tooltip on hover.
TextOverflowMode is an enum Defines truncates the cell content when it overflows its area.