Exemple #1
0
 public static TagBr title(this TagBr tag, string value)
 {
     tag.Title = value; return(tag);
 }
Exemple #2
0
 public static TagBr @class(this TagBr tag, string value)
 {
     tag.Class = value; return(tag);
 }
Exemple #3
0
 public static TagBr style(this TagBr tag, string value)
 {
     tag.Style = value; return(tag);
 }
Exemple #4
0
 public static TagBr id(this TagBr tag, string value)
 {
     tag.Id = value; return(tag);
 }