File: Blocks\RichText\TableColumnAlignment.cs
Web Access
Project: src\aspnetcore\src\Components\AI\src\Microsoft.AspNetCore.Components.AI.csproj (Microsoft.AspNetCore.Components.AI)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Components.AI;
 
/// <summary>
/// Describes the alignment of a table column.
/// </summary>
public enum TableColumnAlignment
{
    /// <summary>
    /// No alignment was specified.
    /// </summary>
    None,
 
    /// <summary>
    /// Left-aligned.
    /// </summary>
    Left,
 
    /// <summary>
    /// Center-aligned.
    /// </summary>
    Center,
 
    /// <summary>
    /// Right-aligned.
    /// </summary>
    Right,
}