Example #1
0
 public virtual Element SetBox(Box box, bool adjust, ElementFxConfig animate)
 {
     this.Call("setBox", new JRawValue(box.Serialize()), adjust, new JRawValue(new ClientConfig().Serialize(this, true)));
     return this;
 }
Example #2
0
 public virtual Element SetBox(Box box)
 {
     this.Call("setBox", new JRawValue(box.Serialize()));
     return this;
 }
Example #3
0
 public virtual Element SetBox(Box box, bool adjust, bool animate)
 {
     this.Call("setBox", new JRawValue(box.Serialize()), adjust, animate);
     return this;
 }