19 lines
262 B
C#
19 lines
262 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public enum NSViewLayerContentsPlacement : long
|
|
{
|
|
ScaleAxesIndependently,
|
|
ScaleProportionallyToFit,
|
|
ScaleProportionallyToFill,
|
|
Center,
|
|
Top,
|
|
TopRight,
|
|
Right,
|
|
BottomRight,
|
|
Bottom,
|
|
BottomLeft,
|
|
Left,
|
|
TopLeft
|
|
}
|
|
}
|