17 lines
244 B
C#
17 lines
244 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreAnimation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum CAAutoresizingMask
|
||
|
{
|
||
|
NotSizable = 0x0,
|
||
|
MinXMargin = 0x1,
|
||
|
WidthSizable = 0x2,
|
||
|
MaxXMargin = 0x4,
|
||
|
MinYMargin = 0x8,
|
||
|
HeightSizable = 0x10,
|
||
|
MaxYMargin = 0x20
|
||
|
}
|
||
|
}
|