Ext.Net.Box.Serialize C# (CSharp) Method

Serialize() private method

private Serialize ( ) : string
return string
        public string Serialize()
        {
            return new ClientConfig().Serialize(this, true);
        }
    }

Usage Example

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;
 }
All Usage Examples Of Ext.Net.Box::Serialize