Exemplo n.º 1
0
 public static TagCol title(this TagCol tag, string value)
 {
     tag.Title = value; return(tag);
 }
Exemplo n.º 2
0
 public static TagCol lang(this TagCol tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
Exemplo n.º 3
0
 public static TagCol @class(this TagCol tag, string value)
 {
     tag.Class = value; return(tag);
 }
Exemplo n.º 4
0
 public static TagCol style(this TagCol tag, string value)
 {
     tag.Style = value; return(tag);
 }
Exemplo n.º 5
0
 public static TagCol onmouseup(this TagCol tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
Exemplo n.º 6
0
 public static TagCol onkeypress(this TagCol tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }
Exemplo n.º 7
0
 public static TagCol valign(this TagCol tag, Valign value)
 {
     tag.Valign = value; return(tag);
 }
Exemplo n.º 8
0
 public static TagCol ondblclick(this TagCol tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
Exemplo n.º 9
0
 public static TagCol @char(this TagCol tag, char value)
 {
     tag.Char = value; return(tag);
 }
Exemplo n.º 10
0
 public static TagCol charoff(this TagCol tag, Length value)
 {
     tag.CharOff = value; return(tag);
 }
Exemplo n.º 11
0
 public static TagCol align(this TagCol tag, Align value)
 {
     tag.Align = value; return(tag);
 }
Exemplo n.º 12
0
 public static TagCol onkeyup(this TagCol tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
Exemplo n.º 13
0
 public static TagCol onkeydown(this TagCol tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
Exemplo n.º 14
0
 public static TagCol xmllang(this TagCol tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Exemplo n.º 15
0
 public static TagCol span(this TagCol tag, int value)
 {
     tag.Span = value; return(tag);
 }
Exemplo n.º 16
0
 public static TagCol dir(this TagCol tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Exemplo n.º 17
0
 public static TagCol width(this TagCol tag, MultiLength value)
 {
     tag.Width = value; return(tag);
 }
Exemplo n.º 18
0
 public static TagCol onmousedown(this TagCol tag, string value)
 {
     tag.OnMouseDown = value; return(tag);
 }
Exemplo n.º 19
0
 public static TagCol id(this TagCol tag, string value)
 {
     tag.Id = value; return(tag);
 }
Exemplo n.º 20
0
 public static TagCol onmouseover(this TagCol tag, string value)
 {
     tag.OnMouseOver = value; return(tag);
 }
Exemplo n.º 21
0
 public static TagCol onmousemove(this TagCol tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }