Ejemplo n.º 1
0
 public static void SetBounds(this HTMLElement c, Union <string, int, float> left, Union <string, int, float> top, Union <string, int, float> width, Union <string, int, float> height)
 {
     c.style.left   = left.ToHtmlValue();
     c.style.top    = top.ToHtmlValue();
     c.style.width  = width.ToHtmlValue();
     c.style.height = height.ToHtmlValue();
 }
Ejemplo n.º 2
0
 public static void SetLocation(this HTMLElement c, Union <string, int, float> left, Union <string, int, float> top)
 {
     c.style.left = left.ToHtmlValue();
     c.style.top  = top.ToHtmlValue();
 }
Ejemplo n.º 3
0
 public static void SetSize(this HTMLElement c, Union <string, int, float> width, Union <string, int, float> height)
 {
     c.style.width  = width.ToHtmlValue();
     c.style.height = height.ToHtmlValue();
 }