19 lines
197 B
C#
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
|
|
}
|
|
}
|