예제 #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));