mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
23 lines
358 B
C#
23 lines
358 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
[Since(3, 2)]
|
|
[Flags]
|
|
public enum CTFontSymbolicTraits : uint
|
|
{
|
|
None = 0x0,
|
|
Italic = 0x1,
|
|
Bold = 0x2,
|
|
Expanded = 0x20,
|
|
Condensed = 0x40,
|
|
MonoSpace = 0x400,
|
|
Vertical = 0x800,
|
|
UIOptimized = 0x1000,
|
|
ColorGlyphs = 0x2000,
|
|
Composite = 0x4000,
|
|
Mask = 0xF0000000
|
|
}
|
|
}
|