CPF/CPF.Mac/Mac/AppKit/NSLayoutAttribute.cs
2023-11-21 23:05:03 +08:00

19 lines
197 B
C#

namespace CPF.Mac.AppKit
{
public enum NSLayoutAttribute : long
{
NoAttribute,
Left,
Right,
Top,
Bottom,
Leading,
Trailing,
Width,
Height,
CenterX,
CenterY,
Baseline
}
}