blob: 0576c7c901b76cb5d0cf82ac89b2617edd9a6012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ Parsed from PDFKit.framework PDFAnnotationMarkup.h }
{$ifdef TYPES}
type
PDFAnnotationMarkupPtr = ^PDFAnnotationMarkup;
{$endif}
{$ifdef TYPES}
type
PDFMarkupType = NSInteger;
PDFMarkupTypePtr = ^PDFMarkupType;
const
kPDFMarkupTypeHighlight = 0;
kPDFMarkupTypeStrikeOut = 1;
kPDFMarkupTypeUnderline = 2;
{$endif}
{$ifdef CLASSES}
type
PDFAnnotationMarkup = objcclass external (PDFAnnotation, NSCopyingProtocol, NSCodingProtocol)
private
_pdfPriv2: PDFAnnotationMarkupPrivateVars;
public
function quadrilateralPoints: NSArray; message 'quadrilateralPoints';
procedure setQuadrilateralPoints (points: NSArray); message 'setQuadrilateralPoints:';
function markupType: PDFMarkupType; message 'markupType';
procedure setMarkupType (type__: PDFMarkupType); message 'setMarkupType:';
end;
{$endif}
|