Esempio n. 1
0
 public static TagFrame scrolling(this TagFrame tag, Scrolling value)
 {
     tag.Scrolling = value; return(tag);
 }
Esempio n. 2
0
 public static TagFrame noresize(this TagFrame tag, NoResize value)
 {
     tag.NoResize = value; return(tag);
 }
Esempio n. 3
0
 public static TagFrame marginwidth(this TagFrame tag, int value)
 {
     tag.MarginWidth = value; return(tag);
 }
Esempio n. 4
0
 public static TagFrame marginheight(this TagFrame tag, int value)
 {
     tag.MarginHeight = value; return(tag);
 }
Esempio n. 5
0
 public static TagFrame src(this TagFrame tag, string value)
 {
     tag.Src = value; return(tag);
 }
Esempio n. 6
0
 public static TagFrame frameborder(this TagFrame tag, bool value)
 {
     tag.FrameBorder = value; return(tag);
 }
Esempio n. 7
0
 public static TagFrame name(this TagFrame tag, string value)
 {
     tag.Name = value; return(tag);
 }
Esempio n. 8
0
 public static TagFrame longdesc(this TagFrame tag, string value)
 {
     tag.LongDesc = value; return(tag);
 }
Esempio n. 9
0
 public static TagFrame title(this TagFrame tag, string value)
 {
     tag.Title = value; return(tag);
 }
Esempio n. 10
0
 public static TagFrame @class(this TagFrame tag, string value)
 {
     tag.Class = value; return(tag);
 }
Esempio n. 11
0
 public static TagFrame id(this TagFrame tag, string value)
 {
     tag.Id = value; return(tag);
 }