Ejemplo n.º 1
0
 public HtmlThElement WithId(string value) => WithAttribute(Attribute.Id(value));
Ejemplo n.º 2
0
 public HtmlThElement WithDir(string value) => WithAttribute(Attribute.Dir(value));
Ejemplo n.º 3
0
 public HtmlThElement WithHidden(string value) => WithAttribute(Attribute.Hidden(value));
Ejemplo n.º 4
0
 public HtmlThElement WithContentEditable(string value) => WithAttribute(Attribute.ContentEditable(value));
Ejemplo n.º 5
0
 public HtmlThElement WithContextMenu(string value) => WithAttribute(Attribute.ContextMenu(value));
Ejemplo n.º 6
0
 public HtmlThElement WithStyle(string value) => WithAttribute(Attribute.Style(value));
Ejemplo n.º 7
0
 public HtmlScriptElement WithCrossOrigin(string value) => WithAttribute(Attribute.CrossOrigin(value));
Ejemplo n.º 8
0
 public HtmlThElement WithHeaders(string value) => WithAttribute(Attribute.Headers(value));
Ejemplo n.º 9
0
 public HtmlThElement WithRowSpan(string value) => WithAttribute(Attribute.RowSpan(value));
Ejemplo n.º 10
0
 public HtmlScriptElement WithType(string value) => WithAttribute(Attribute.Type(value));
Ejemplo n.º 11
0
 public HtmlDlElement WithCompact(string value) => WithAttribute(Attribute.Compact(value));
Ejemplo n.º 12
0
 public HtmlScriptElement WithSrc(string value) => WithAttribute(Attribute.Src(value));
Ejemplo n.º 13
0
 public HtmlScriptElement WithIntegrity(string value) => WithAttribute(Attribute.Integrity(value));
Ejemplo n.º 14
0
 public HtmlScriptElement WithDefer(string value) => WithAttribute(Attribute.Defer(value));
Ejemplo n.º 15
0
 public HtmlThElement WithLang(string value) => WithAttribute(Attribute.Lang(value));
Ejemplo n.º 16
0
 public HtmlThElement WithAccessKey(string value) => WithAttribute(Attribute.AccessKey(value));
Ejemplo n.º 17
0
 public HtmlThElement WithSpellCheck(string value) => WithAttribute(Attribute.SpellCheck(value));
Ejemplo n.º 18
0
 public HtmlThElement WithClass(string value) => WithAttribute(Attribute.Class(value));
Ejemplo n.º 19
0
 public HtmlThElement WithTabIndex(string value) => WithAttribute(Attribute.TabIndex(value));
Ejemplo n.º 20
0
 public HtmlParamElement WithValue(string value) => WithAttribute(Attribute.Value(value));