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