blob: 2db1da2cb3b7227ae1fb628c7354f7909c0ef5ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ Parsed from PDFKit.framework PDFAnnotationLink.h }
{$ifdef TYPES}
type
PDFAnnotationLinkPtr = ^PDFAnnotationLink;
{$endif}
{$ifdef CLASSES}
type
PDFAnnotationLink = objcclass external (PDFAnnotation, NSCopyingProtocol)
private
_pdfPriv2: PDFAnnotationLinkPrivateVars;
public
function destination: PDFDestination; message 'destination';
procedure setDestination (destination_: PDFDestination); message 'setDestination:';
function URL: NSURL; message 'URL';
procedure setURL (url_: NSURL); message 'setURL:';
procedure setHighlighted (flag: ObjCBOOL); message 'setHighlighted:';
end;
{$endif}
|