Files
radzen-blazor/Radzen.Blazor/VerticalAlign.cs
2026-06-15 18:44:54 +03:00

20 lines
464 B
C#

namespace Radzen;
/// <summary>
/// Specifies vertical alignment of content in a container.
/// </summary>
public enum VerticalAlign
{
/// <summary>
/// The content is aligned to the top of its container.
/// </summary>
Top,
/// <summary>
/// The content is vertically centered in its container.
/// </summary>
Middle,
/// <summary>
/// The content is aligned to the bottom of its container.
/// </summary>
Bottom
}