2019-12-09 00:25:22 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2020-05-29 00:33:49 +08:00
|
|
|
|
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
|
|
|
|
{
|
2020-05-10 15:42:02 +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
|
|
|
|
{
|
2020-05-10 15:42:02 +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
|
|
|
|
{
|
2020-05-10 15:42:02 +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
|
|
|
|
{
|
2020-05-10 15:42:02 +08:00
|
|
|
|
Top,
|
|
|
|
|
Middle,
|
|
|
|
|
Bottom
|
2019-12-09 00:25:22 +08:00
|
|
|
|
}
|
2020-05-10 15:42:02 +08:00
|
|
|
|
}
|