mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-17 10:42:00 +08:00
15 lines
236 B
C#
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
|
||
|
}
|
||
|
}
|