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