blob: 3d40efad7b1f2aff41727a3e2bd8dc2f0983ca52 (
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
|
{ Parsed from PDFKit.framework PDFAnnotationFreeText.h }
{ Types from PDFAnnotationFreeText }
{$ifdef TYPES}
{$endif}
{$ifdef TYPES}
type
PDFAnnotationFreeTextPtr = ^PDFAnnotationFreeText;
{$endif}
{$ifdef CLASSES}
type
PDFAnnotationFreeText = objcclass external (PDFAnnotation, NSCopyingProtocol, NSCodingProtocol)
private
_pdfPriv2: PDFAnnotationFreeTextPrivateVars;
public
function font: NSFont; message 'font';
procedure setFont (font_: NSFont); message 'setFont:';
{$if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)}
function fontColor: NSColor; message 'fontColor';
procedure setFontColor (color_: NSColor); message 'setFontColor:';
{$endif}
function alignment: NSTextAlignment; message 'alignment';
procedure setAlignment (alignment_: NSTextAlignment); message 'setAlignment:';
end;
{$endif}
|