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