blob: a8e3a9be15e3dc07912578b3a351ffb319d7f9da (
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
36
37
38
39
40
41
42
43
44
45
46
47
|
{ Parsed from WebKit.framework DOMHTMLAnchorElement.h }
{$ifdef TYPES}
type
DOMHTMLAnchorElementPtr = ^DOMHTMLAnchorElement;
{$endif}
{$ifdef CLASSES}
type
DOMHTMLAnchorElement = objcclass external (DOMHTMLElement)
public
procedure setCharset(newValue: NSString); message 'setCharset:';
function charset: NSString; message 'charset';
procedure setCoords(newValue: NSString); message 'setCoords:';
function coords: NSString; message 'coords';
procedure setHref(newValue: NSString); message 'setHref:';
function href: NSString; message 'href';
procedure setHreflang(newValue: NSString); message 'setHreflang:';
function hreflang: NSString; message 'hreflang';
procedure setName(newValue: NSString); message 'setName:';
function name: NSString; message 'name';
procedure setRel(newValue: NSString); message 'setRel:';
function rel: NSString; message 'rel';
procedure setRev(newValue: NSString); message 'setRev:';
function rev: NSString; message 'rev';
procedure setShape(newValue: NSString); message 'setShape:';
function shape: NSString; message 'shape';
procedure setTarget(newValue: NSString); message 'setTarget:';
function target: NSString; message 'target';
procedure setType(newValue: NSString); message 'setType:';
function type_: NSString; message 'type';
procedure setAccessKey(newValue: NSString); message 'setAccessKey:';
function accessKey: NSString; message 'accessKey';
function hashName: NSString; message 'hashName';
function host: NSString; message 'host';
function hostname: NSString; message 'hostname';
function pathname: NSString; message 'pathname';
function port: NSString; message 'port';
function protocol: NSString; message 'protocol';
function search: NSString; message 'search';
function text: NSString; message 'text';
function absoluteLinkURL: NSURL; message 'absoluteLinkURL';
end;
{$endif}
|