示例#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);
 }