14 lines
162 B
C#
14 lines
162 B
C#
using CPF.Mac.ObjCRuntime;
|
|
|
|
namespace CPF.Mac.CoreText
|
|
{
|
|
[Since(3, 2)]
|
|
public enum CTUnderlineStyle
|
|
{
|
|
None = 0,
|
|
Single = 1,
|
|
Thick = 2,
|
|
Double = 9
|
|
}
|
|
}
|