Пример #1
0
        public void BeginTag(CGPdfTagType tagType, CGPdfTagProperties tagProperties)
        {
            var d = tagProperties?.Dictionary;

            CGPDFContextBeginTag(Handle, tagType, d.GetHandle());
        }
Пример #2
0
 public void BeginTag(CGPdfTagType tagType, NSDictionary tagProperties)
 {
     CGPDFContextBeginTag(Handle, tagType, tagProperties.GetHandle());
 }
Пример #3
0
 public static string GetName(this CGPdfTagType self)
 {
     return(Marshal.PtrToStringAnsi(CGPDFTagTypeGetName(self)));
 }
Пример #4
0
 static extern void CGPDFContextBeginTag(/* CGContextRef* */ IntPtr context, CGPdfTagType tagType, /* CFDictionaryRef* _Nullable */ IntPtr tagProperties);
Пример #5
0
 static extern /* const char * _Nullable */ IntPtr CGPDFTagTypeGetName(CGPdfTagType tagType);