Inheritance: ElementFxConfig
コード例 #1
0
ファイル: Element.cs プロジェクト: hh22333/Ext.NET.Community
 public virtual Element SwitchOff(FxConfig config)
 {
     this.Call("switchOff", new JRawValue(config.Serialize()));
     return this;
 }
コード例 #2
0
ファイル: Element.cs プロジェクト: hh22333/Ext.NET.Community
 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;
 }
コード例 #3
0
ファイル: Element.cs プロジェクト: hh22333/Ext.NET.Community
 public virtual Element SlideOut(string anchor, FxConfig config)
 {
     this.Call("slideOut", anchor, new JRawValue(config.Serialize()));
     return this;
 }
コード例 #4
0
ファイル: Element.cs プロジェクト: hh22333/Ext.NET.Community
 public virtual Element Frame(string color, int count, FxConfig config)
 {
     this.Call("frame", color, count, new JRawValue(config.Serialize()));
     return this;
 }