Esempio n. 1
0
 public static TagBdo style(this TagBdo tag, string value)
 {
     tag.Style = value; return(tag);
 }
Esempio n. 2
0
 public static TagBdo title(this TagBdo tag, string value)
 {
     tag.Title = value; return(tag);
 }
Esempio n. 3
0
 public static TagBdo @class(this TagBdo tag, string value)
 {
     tag.Class = value; return(tag);
 }
Esempio n. 4
0
 public static TagBdo id(this TagBdo tag, string value)
 {
     tag.Id = value; return(tag);
 }
Esempio n. 5
0
 public static TagBdo dir(this TagBdo tag, Dir value)
 {
     tag.Dir = value; return(tag);
 }
Esempio n. 6
0
 public static TagBdo xmllang(this TagBdo tag, string value)
 {
     tag.XmlLang = value; return(tag);
 }
Esempio n. 7
0
 public static TagBdo lang(this TagBdo tag, LangCode value)
 {
     tag.Lang = value; return(tag);
 }