summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMHTMLTableSectionElement.inc
blob: 45a5a263749e3fb2fa4b267da2a79570904678c2 (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
{ Parsed from WebKit.framework DOMHTMLTableSectionElement.h }


{$ifdef TYPES}
type
  DOMHTMLTableSectionElementPtr = ^DOMHTMLTableSectionElement;
{$endif}

{$ifdef CLASSES}

type
  DOMHTMLTableSectionElement = objcclass external (DOMHTMLElement)
  public
    procedure setAlign(newValue: NSString); message 'setAlign:';
    function align: NSString; message 'align';
    procedure setCh(newValue: NSString); message 'setCh:';
    function ch: NSString; message 'ch';
    procedure setChOff(newValue: NSString); message 'setChOff:';
    function chOff: NSString; message 'chOff';
    procedure setVAlign(newValue: NSString); message 'setVAlign:';
    function vAlign: NSString; message 'vAlign';
    function rows: DOMHTMLCollection; message 'rows';
    function insertRow (index: cint): DOMHTMLElement; message 'insertRow:';
    procedure deleteRow (index: cint); message 'deleteRow:';
  end;
{$endif}