29 lines
615 B
C#
29 lines
615 B
C#
![]() |
using CPF.Mac.Foundation;
|
||
|
using CPF.Mac.ObjCRuntime;
|
||
|
using System;
|
||
|
|
||
|
namespace CPF.Mac.CoreText
|
||
|
{
|
||
|
[Since(3, 2)]
|
||
|
public static class CTFontCollectionOptionKey
|
||
|
{
|
||
|
public static readonly NSString RemoveDuplicates;
|
||
|
|
||
|
static CTFontCollectionOptionKey()
|
||
|
{
|
||
|
IntPtr intPtr = Dlfcn.dlopen("/System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreText.framework/CoreText", 0);
|
||
|
if (!(intPtr == IntPtr.Zero))
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
RemoveDuplicates = Dlfcn.GetStringConstant(intPtr, "kCTFontCollectionRemoveDuplicatesOption");
|
||
|
}
|
||
|
finally
|
||
|
{
|
||
|
Dlfcn.dlclose(intPtr);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|