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
|
|
}
|
|
}
|