CPF/CPF.Mac/Mac/CoreText/CTUnderlineStyle.cs

14 lines
162 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using CPF.Mac.ObjCRuntime;
namespace CPF.Mac.CoreText
{
[Since(3, 2)]
public enum CTUnderlineStyle
{
None = 0,
Single = 1,
Thick = 2,
Double = 9
}
}