Example #1
0
 public static TagBlockQuote onmouseover(this TagBlockQuote tag, string value)
 {
     tag.OnMouseOver = value; return(tag);
 }
Example #2
0
 public static TagBlockQuote onmousemove(this TagBlockQuote tag, string value)
 {
     tag.OnMouseMove = value; return(tag);
 }
Example #3
0
 public static TagBlockQuote ondblclick(this TagBlockQuote tag, string value)
 {
     tag.OnDblClick = value; return(tag);
 }
Example #4
0
 public static TagBlockQuote onmouseup(this TagBlockQuote tag, string value)
 {
     tag.OnMouseUp = value; return(tag);
 }
Example #5
0
 public static TagBlockQuote xmllang(this TagBlockQuote tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Example #6
0
 public static TagBlockQuote dir(this TagBlockQuote tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Example #7
0
 public static TagBlockQuote title(this TagBlockQuote tag, string value)
 {
     tag.Title = value; return(tag);
 }
Example #8
0
 public static TagBlockQuote lang(this TagBlockQuote tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }
Example #9
0
 public static TagBlockQuote @class(this TagBlockQuote tag, string value)
 {
     tag.Class = value; return(tag);
 }
Example #10
0
 public static TagBlockQuote id(this TagBlockQuote tag, string value)
 {
     tag.Id = value; return(tag);
 }
Example #11
0
 public static TagBlockQuote cite(this TagBlockQuote tag, string value)
 {
     tag.Cite = value; return(tag);
 }
Example #12
0
 public static TagBlockQuote onkeyup(this TagBlockQuote tag, string value)
 {
     tag.OnKeyUp = value; return(tag);
 }
Example #13
0
 public static TagBlockQuote onkeypress(this TagBlockQuote tag, string value)
 {
     tag.OnKeyPress = value; return(tag);
 }