Exemplo n.º 1
0
 public HtmlTag Cell(string text) => HtmlTagExtensions.Text(new HtmlTag("td", this), text);
Exemplo n.º 2
0
 public HtmlTag Header(string text) => HtmlTagExtensions.Text(new HtmlTag("th", this), text);
Exemplo n.º 3
0
 private static HtmlTag MakeOption(string display, object value) => HtmlTagExtensions.Attr(HtmlTagExtensions.Text(new HtmlTag("option"), display), "value", value);