mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +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
|
|
}
|
|
}
|