blob: a969209a0f945db37e232bb790865673b1b6051a (
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
48
49
50
51
52
53
54
55
56
57
|
{ Parsed from Webkit.framework DOMHTMLHRElement.h }
{$ifdef TYPES}
{$ifndef DOMHTMLHRELEMENT_PAS_T}
{$define DOMHTMLHRELEMENT_PAS_T}
{$endif}
{$endif}
{$ifdef RECORDS}
{$ifndef DOMHTMLHRELEMENT_PAS_R}
{$define DOMHTMLHRELEMENT_PAS_R}
{$endif}
{$endif}
{$ifdef FUNCTIONS}
{$ifndef DOMHTMLHRELEMENT_PAS_F}
{$define DOMHTMLHRELEMENT_PAS_F}
{$endif}
{$endif}
{$ifdef EXTERNAL_SYMBOLS}
{$ifndef DOMHTMLHRELEMENT_PAS_S}
{$define DOMHTMLHRELEMENT_PAS_S}
{$endif}
{$endif}
{$ifdef FORWARD}
DOMHTMLHRElement = objcclass;
DOMHTMLHRElementPointer = ^DOMHTMLHRElement;
DOMHTMLHRElementPtr = DOMHTMLHRElementPointer;
{$endif}
{$ifdef CLASSES}
{$ifndef DOMHTMLHRELEMENT_PAS_C}
{$define DOMHTMLHRELEMENT_PAS_C}
{ DOMHTMLHRElement }
DOMHTMLHRElement = objcclass external (DOMHTMLElement)
public
procedure setAlign (newValue: NSString); message 'setAlign:';
function align: NSString; message 'align';
procedure setNoShade (newValue: Boolean); message 'setNoShade:';
function noShade: Boolean; message 'noShade';
procedure setSize (newValue: NSString); message 'setSize:';
function size: NSString; message 'size';
procedure setWidth (newValue: NSString); message 'setWidth:';
function width: NSString; message 'width';
end;
{$endif}
{$endif}
|