mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
29 lines
459 B
C#
29 lines
459 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies horizontal alignment.
|
|
/// </summary>
|
|
public enum HorizontalAlign
|
|
{
|
|
/// <summary>
|
|
/// Left horizontal alignment.
|
|
/// </summary>
|
|
Left,
|
|
|
|
/// <summary>
|
|
/// Right horizontal alignment.
|
|
/// </summary>
|
|
Right,
|
|
|
|
/// <summary>
|
|
/// Center horizontal alignment.
|
|
/// </summary>
|
|
Center,
|
|
|
|
/// <summary>
|
|
/// Justify horizontal alignment.
|
|
/// </summary>
|
|
Justify
|
|
}
|
|
|