mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
20 lines
464 B
C#
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
|
|
} |