public virtual Element SwitchOff(FxConfig config) { this.Call("switchOff", new JRawValue(config.Serialize())); return this; }
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; }
public virtual Element SlideOut(string anchor, FxConfig config) { this.Call("slideOut", anchor, new JRawValue(config.Serialize())); return this; }
public virtual Element Frame(string color, int count, FxConfig config) { this.Call("frame", color, count, new JRawValue(config.Serialize())); return this; }