Esempio n. 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;
 }
Esempio n. 2
0
 public virtual Element SetBox(Box box)
 {
     this.Call("setBox", new JRawValue(box.Serialize()));
     return this;
 }
Esempio n. 3
0
 public virtual Element SetBox(Box box, bool adjust, bool animate)
 {
     this.Call("setBox", new JRawValue(box.Serialize()), adjust, animate);
     return this;
 }