예제 #1
0
 public static string ToCssStringValue(this CssPosition value)
 {
     return(_cssPositionMap.GetStringFromValue(value));
 }
예제 #2
0
 public virtual Element Position(CssPosition position)
 {
     this.Call("positionEx", position.ToString().ToLowerCamelCase());
     return this;
 }
예제 #3
0
 public static T SetPosition <T>(this T control, CssPosition position) where T : HtmlControl
 {
     control.Position = position;
     return(control);
 }
예제 #4
0
 public virtual Element Position(CssPosition position, int zIndex, int x, int y)
 {
     this.Call("positionEx", position.ToString().ToLowerCamelCase(), zIndex, x, y);
     return this;
 }