blob: f69c4e33ccb469a09e0ec8901a9bcdf9dfcb1631 (
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
34
35
|
{ Parsed from PDFKit.framework PDFAnnotationText.h }
{$ifdef TYPES}
type
PDFAnnotationTextPtr = ^PDFAnnotationText;
{$endif}
{$ifdef TYPES}
type
PDFTextAnnotationIconType = NSInteger;
PDFTextAnnotationIconTypePtr = ^PDFTextAnnotationIconType;
const
kPDFTextAnnotationIconComment = 0;
kPDFTextAnnotationIconKey = 1;
kPDFTextAnnotationIconNote = 2;
kPDFTextAnnotationIconHelp = 3;
kPDFTextAnnotationIconNewParagraph = 4;
kPDFTextAnnotationIconParagraph = 5;
kPDFTextAnnotationIconInsert = 6;
{$endif}
{$ifdef CLASSES}
type
PDFAnnotationText = objcclass external (PDFAnnotation, NSCopyingProtocol, NSCodingProtocol)
private
_pdfPriv2: PDFAnnotationTextPrivateVars;
public
function iconType: PDFTextAnnotationIconType; message 'iconType';
procedure setIconType (type__: PDFTextAnnotationIconType); message 'setIconType:';
end;
{$endif}
|