Ext.Net.DropDownFieldBase.SetValue C# (CSharp) 메소드

SetValue() 개인적인 메소드

private SetValue ( string value, string text ) : void
value string
text string
리턴 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