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