blob: 6ee773427a69f626179161949066d4f4dd019002 (
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 PDFActionGoTo.h }
{$ifdef TYPES}
type
PDFActionGoToPtr = ^PDFActionGoTo;
{$endif}
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
{$ifdef CLASSES}
type
PDFActionGoTo = objcclass external (PDFAction, NSCopyingProtocol)
private
_pdfPriv2: PDFActionGoToPrivateVars;
public
function initWithDestination (destination: PDFDestination): id; message 'initWithDestination:';
function destination: PDFDestination; message 'destination';
procedure setDestination (destination_: PDFDestination); message 'setDestination:';
end;
{$endif}
{$endif}
|