blob: 3ec37ef705f9395ea988a6ef309c1987ca14a1cc (
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
|
{ Parsed from WebKit.framework DOMHTMLBodyElement.h }
{$ifdef TYPES}
type
DOMHTMLBodyElementPtr = ^DOMHTMLBodyElement;
{$endif}
{$ifdef CLASSES}
type
DOMHTMLBodyElement = objcclass external (DOMHTMLElement)
public
procedure setALink(newValue: NSString); message 'setALink:';
function aLink: NSString; message 'aLink';
procedure setBackground(newValue: NSString); message 'setBackground:';
function background: NSString; message 'background';
procedure setBgColor(newValue: NSString); message 'setBgColor:';
function bgColor: NSString; message 'bgColor';
procedure setLink(newValue: NSString); message 'setLink:';
function link: NSString; message 'link';
procedure setText(newValue: NSString); message 'setText:';
function text: NSString; message 'text';
procedure setVLink(newValue: NSString); message 'setVLink:';
function vLink: NSString; message 'vLink';
end;
{$endif}
|