public static TagSup onmousemove(this TagSup tag, string value) { tag.OnMouseMove = value; return(tag); }
public static TagSup onmouseout(this TagSup tag, string value) { tag.OnMouseOut = value; return(tag); }
public static TagSup onmousedown(this TagSup tag, string value) { tag.OnMouseDown = value; return(tag); }
public static TagSup onmouseup(this TagSup tag, string value) { tag.OnMouseUp = value; return(tag); }
public static TagSup dir(this TagSup tag, Dir value) { tag.Dir = value; return(tag); }
public static TagSup ondblclick(this TagSup tag, string value) { tag.OnDblClick = value; return(tag); }
public static TagSup lang(this TagSup tag, LangCode value) { tag.Lang = value; return(tag); }
public static TagSup xmllang(this TagSup tag, string value) { tag.XmlLang = value; return(tag); }
public static TagSup style(this TagSup tag, string value) { tag.Style = value; return(tag); }
public static TagSup title(this TagSup tag, string value) { tag.Title = value; return(tag); }
public static TagSup @class(this TagSup tag, string value) { tag.Class = value; return(tag); }
public static TagSup id(this TagSup tag, string value) { tag.Id = value; return(tag); }
public static TagSup onkeyup(this TagSup tag, string value) { tag.OnKeyUp = value; return(tag); }
public static TagSup onkeydown(this TagSup tag, string value) { tag.OnKeyDown = value; return(tag); }
public static TagSup onkeypress(this TagSup tag, string value) { tag.OnKeyPress = value; return(tag); }