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(); }
public Vector2(Union <string, int, float> x, Union <string, int, float> y) { X = x; Y = y; }
public static void SetLocation(this Control c, Union <string, int, float> left, Union <string, int, float> top) { c.Element.SetLocation(left, top); }
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(); }
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(); }
public static Control SetSize(this Control c, Union <string, int, float> width, Union <string, int, float> height) { c.Element.SetSize(width, height); return(c); }
public static Control SetBounds(this Control c, Union <string, int, float> left, Union <string, int, float> top, Union <string, int, float> width, Union <string, int, float> height) { c.Element.SetBounds(left, top, width, height); return(c); }