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