Enum TextAlign
Specifies text alignment. Usually rendered as CSS text-align attribute.
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public enum TextAlign
Fields
| Name | Description |
|---|---|
| Center | The text is centered in its container. |
| End | The same as right if direction is left-to-right and left if direction is right-to-left.. |
| Justify | The text is justified. |
| JustifyAll | Same as justify, but also forces the last line to be justified. |
| Left | The text is aligned to the left side of its container. |
| Right | The text is aligned to the right side of its container. |
| Start | The same as left if direction is left-to-right and right if direction is right-to-left.. |