CPF/CPF.Mac/Mac/CoreText/CTUnderlineStyleModifiers.cs
2023-11-21 23:05:03 +08:00

15 lines
236 B
C#

using CPF.Mac.ObjCRuntime;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
public enum CTUnderlineStyleModifiers
{
PatternSolid = 0,
PatternDot = 0x100,
PatternDash = 0x200,
PatternDashDot = 768,
PatternDashDotDot = 0x400
}
}