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