mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
bfa12a72f3
* feat(module: table): Add Align property * feat(module: table): Add Align property * feat(module: table): Add Align property
43 lines
579 B
C#
43 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public enum AntDirectionVHIType
|
|
{
|
|
Vertical,
|
|
Horizontal,
|
|
Inline
|
|
}
|
|
|
|
public enum AntFourDirectionType
|
|
{
|
|
Top,
|
|
Bottom,
|
|
Left,
|
|
Right
|
|
}
|
|
|
|
public enum AntAlignType
|
|
{
|
|
Top,
|
|
Middle,
|
|
Bottom
|
|
}
|
|
|
|
public enum AntLabelAlignType
|
|
{
|
|
Left,
|
|
Right
|
|
}
|
|
|
|
public enum ColumnAlign
|
|
{
|
|
Left,
|
|
Center,
|
|
Right
|
|
}
|
|
}
|