ant-design-blazor/components/core/Direction.cs

36 lines
504 B
C#
Raw Normal View History

2019-12-09 00:25:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntDesign
2019-12-09 00:25:22 +08:00
{
2020-03-10 17:42:13 +08:00
public enum AntDirectionVHIType
2019-12-09 00:25:22 +08:00
{
Vertical,
Horizontal,
Inline
2019-12-09 00:25:22 +08:00
}
2020-03-10 17:42:13 +08:00
public enum AntDirectionVHType
2019-12-09 00:25:22 +08:00
{
Vertical,
Horizontal
2019-12-09 00:25:22 +08:00
}
2020-03-10 17:42:13 +08:00
public enum AntFourDirectionType
2019-12-09 00:25:22 +08:00
{
Top,
Bottom,
Left,
Right
2019-12-09 00:25:22 +08:00
}
2020-03-10 17:42:13 +08:00
public enum AntAlignType
2019-12-09 00:25:22 +08:00
{
Top,
Middle,
Bottom
2019-12-09 00:25:22 +08:00
}
}