BExplorer.Shell.FileNameComboBox.OnTextChanged C# (CSharp) Method

OnTextChanged() protected method

Raises the Control.TextChanged event.
protected OnTextChanged ( EventArgs e ) : void
e System.EventArgs /// An that contains the event data. ///
return void
        protected override void OnTextChanged(EventArgs e)
        {
            base.OnTextChanged(e);
            if (m_TryAutoComplete)
            {
                try
                {
                    AutoComplete();
                }
                catch (Exception) { }
            }
        }