Ejemplo n.º 1
0
 public static TagIFrame width(this TagIFrame tag, Length value)
 {
     tag.Width = value; return(tag);
 }
Ejemplo n.º 2
0
 public static TagIFrame scrolling(this TagIFrame tag, Scrolling value)
 {
     tag.Scrolling = value; return(tag);
 }
Ejemplo n.º 3
0
 public static TagIFrame height(this TagIFrame tag, Length value)
 {
     tag.Height = value; return(tag);
 }
Ejemplo n.º 4
0
 public static TagIFrame marginwidth(this TagIFrame tag, int value)
 {
     tag.MarginWidth = value; return(tag);
 }
Ejemplo n.º 5
0
 public static TagIFrame marginheight(this TagIFrame tag, int value)
 {
     tag.MarginHeight = value; return(tag);
 }
Ejemplo n.º 6
0
 public static TagIFrame src(this TagIFrame tag, string value)
 {
     tag.Src = value; return(tag);
 }
Ejemplo n.º 7
0
 public static TagIFrame frameborder(this TagIFrame tag, bool value)
 {
     tag.FrameBorder = value; return(tag);
 }
Ejemplo n.º 8
0
 public static TagIFrame name(this TagIFrame tag, string value)
 {
     tag.Name = value; return(tag);
 }
Ejemplo n.º 9
0
 public static TagIFrame longdesc(this TagIFrame tag, string value)
 {
     tag.LongDesc = value; return(tag);
 }
Ejemplo n.º 10
0
 public static TagIFrame title(this TagIFrame tag, string value)
 {
     tag.Title = value; return(tag);
 }
Ejemplo n.º 11
0
 public static TagIFrame @class(this TagIFrame tag, string value)
 {
     tag.Class = value; return(tag);
 }
Ejemplo n.º 12
0
 public static TagIFrame id(this TagIFrame tag, string value)
 {
     tag.Id = value; return(tag);
 }