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

OnKeyPress() protected method

Raises the Control.KeyPress event.
protected OnKeyPress ( KeyPressEventArgs e ) : void
e System.Windows.Forms.KeyPressEventArgs /// A that contains the event data. ///
return void
        protected override void OnKeyPress(KeyPressEventArgs e)
        {
            base.OnKeyPress(e);
            m_TryAutoComplete = char.IsLetterOrDigit(e.KeyChar);
        }