Ext.Net.DropDownFieldBase.SetValue C# (CSharp) Method

SetValue() private method

private SetValue ( string value, string text ) : void
value string
text string
return void
        public virtual void SetValue(string value, string text)
        {
            this.SuspendScripting();
            this.Value = value;
            this.ResumeScripting();

            this.Call("setValue", value, text);
        }

Same methods

DropDownFieldBase::SetValue ( string value, string text, bool collapse ) : void