1 module libwasm.bindings.HTMLTableCellElement;
2 
3 import libwasm.types;
4 
5 import memutils.ct: tuple;
6 import libwasm.bindings.HTMLElement;
7 
8 @safe:
9 nothrow:
10 
11 struct HTMLTableCellElement {
12   nothrow:
13   libwasm.bindings.HTMLElement.HTMLElement _parent;
14   alias _parent this;
15   this(Handle h) {
16     _parent = .HTMLElement(h);
17   }
18   void colSpan()(uint colSpan) {
19     Object_Call_uint__void(this._parent, "colSpan", colSpan);
20   }
21   uint colSpan()() {
22     return Object_Getter__uint(this._parent, "colSpan");
23   }
24   void rowSpan()(uint rowSpan) {
25     Object_Call_uint__void(this._parent, "rowSpan", rowSpan);
26   }
27   uint rowSpan()() {
28     return Object_Getter__uint(this._parent, "rowSpan");
29   }
30   void headers()(string headers) {
31     Object_Call_string__void(this._parent, "headers", headers);
32   }
33   string headers()() {
34     return Object_Getter__string(this._parent, "headers");
35   }
36   int cellIndex()() {
37     return Object_Getter__int(this._parent, "cellIndex");
38   }
39   void abbr()(string abbr) {
40     Object_Call_string__void(this._parent, "abbr", abbr);
41   }
42   string abbr()() {
43     return Object_Getter__string(this._parent, "abbr");
44   }
45   void scope_()(string scope_) {
46     Object_Call_string__void(this._parent, "scope", scope_);
47   }
48   string scope_()() {
49     return Object_Getter__string(this._parent, "scope");
50   }
51   void align_()(string align_) {
52     Object_Call_string__void(this._parent, "align", align_);
53   }
54   string align_()() {
55     return Object_Getter__string(this._parent, "align");
56   }
57   void axis()(string axis) {
58     Object_Call_string__void(this._parent, "axis", axis);
59   }
60   string axis()() {
61     return Object_Getter__string(this._parent, "axis");
62   }
63   void height()(string height) {
64     Object_Call_string__void(this._parent, "height", height);
65   }
66   string height()() {
67     return Object_Getter__string(this._parent, "height");
68   }
69   void width()(string width) {
70     Object_Call_string__void(this._parent, "width", width);
71   }
72   string width()() {
73     return Object_Getter__string(this._parent, "width");
74   }
75   void ch()(string ch) {
76     Object_Call_string__void(this._parent, "ch", ch);
77   }
78   string ch()() {
79     return Object_Getter__string(this._parent, "ch");
80   }
81   void chOff()(string chOff) {
82     Object_Call_string__void(this._parent, "chOff", chOff);
83   }
84   string chOff()() {
85     return Object_Getter__string(this._parent, "chOff");
86   }
87   void noWrap()(bool noWrap) {
88     Object_Call_bool__void(this._parent, "noWrap", noWrap);
89   }
90   bool noWrap()() {
91     return Object_Getter__bool(this._parent, "noWrap");
92   }
93   void vAlign()(string vAlign) {
94     Object_Call_string__void(this._parent, "vAlign", vAlign);
95   }
96   string vAlign()() {
97     return Object_Getter__string(this._parent, "vAlign");
98   }
99   void bgColor()(string bgColor) {
100     Object_Call_string__void(this._parent, "bgColor", bgColor);
101   }
102   string bgColor()() {
103     return Object_Getter__string(this._parent, "bgColor");
104   }
105 }
106 
107