Inheritance: ElementFxConfig
Ejemplo n.º 1
0
 public virtual Element SwitchOff(FxConfig config)
 {
     this.Call("switchOff", new JRawValue(config.Serialize()));
     return this;
 }
Ejemplo n.º 2
0
 public virtual Element Scale(int? width, int? height, FxConfig config)
 {
     this.Call("scale", width.HasValue ? (object)width.Value : new JRawValue("undefined"), height.HasValue ? (object)height.Value : new JRawValue("undefined"), new JRawValue(config.Serialize()));
     return this;
 }
Ejemplo n.º 3
0
 public virtual Element SlideOut(string anchor, FxConfig config)
 {
     this.Call("slideOut", anchor, new JRawValue(config.Serialize()));
     return this;
 }
Ejemplo n.º 4
0
 public virtual Element Frame(string color, int count, FxConfig config)
 {
     this.Call("frame", color, count, new JRawValue(config.Serialize()));
     return this;
 }