Enum TextAlign
- Namespace
- Radzen
- Assembly
- Radzen.Blazor.dll
Specifies text alignment. Usually rendered as CSS text-align
attribute.
public enum TextAlign
- Extension Methods
Fields
Center = 2
The text is centered in its container.
End = 6
The same as right if direction is left-to-right and left if direction is right-to-left..
Justify = 3
The text is justified.
JustifyAll = 4
Same as justify, but also forces the last line to be justified.
Left = 0
The text is aligned to the left side of its container.
Right = 1
The text is aligned to the right side of its container.
Start = 5
The same as left if direction is left-to-right and right if direction is right-to-left..