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