public static TagP style(this TagP tag, string value) { tag.Style = value; return(tag); }
public static TagP @class(this TagP tag, string value) { tag.Class = value; return(tag); }
public static TagP id(this TagP tag, string value) { tag.Id = value; return(tag); }
public static TagP onkeyup(this TagP tag, string value) { tag.OnKeyUp = value; return(tag); }
public static TagP onkeydown(this TagP tag, string value) { tag.OnKeyDown = value; return(tag); }
public static TagP onkeypress(this TagP tag, string value) { tag.OnKeyPress = value; return(tag); }