CPF/CPF.Mac/Mac/AppKit/NSLayoutAttribute.cs

19 lines
197 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
namespace CPF.Mac.AppKit
{
public enum NSLayoutAttribute : long
{
NoAttribute,
Left,
Right,
Top,
Bottom,
Leading,
Trailing,
Width,
Height,
CenterX,
CenterY,
Baseline
}
}