mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
13 lines
258 B
C#
13 lines
258 B
C#
![]() |
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
public enum NSStringDrawingOptions : ulong
|
||
|
{
|
||
|
UsesLineFragmentOrigin = 1uL,
|
||
|
UsesFontLeading = 2uL,
|
||
|
DisableScreenFontSubstitution = 4uL,
|
||
|
UsesDeviceMetrics = 8uL,
|
||
|
OneShot = 0x10,
|
||
|
TruncatesLastVisibleLine = 0x20
|
||
|
}
|
||
|
}
|