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