Esempio n. 1
0
 public static TagP style(this TagP tag, string value)
 {
     tag.Style = value; return(tag);
 }
Esempio n. 2
0
 public static TagP @class(this TagP tag, string value)
 {
     tag.Class = value; return(tag);
 }
Esempio n. 3
0
 public static TagP id(this TagP tag, string value)
 {
     tag.Id = value; return(tag);
 }
Esempio n. 4
0
 public static TagP onkeyup(this TagP tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
Esempio n. 5
0
 public static TagP onkeydown(this TagP tag, string value)
 {
     tag.OnKeyDown = value; return(tag);
 }
Esempio n. 6
0
 public static TagP onkeypress(this TagP tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }