BrightIdeasSoftware.FastObjectListView.OnPreviewKeyDown C# (CSharp) Method

OnPreviewKeyDown() protected method

OnPreviewKeyDown
protected OnPreviewKeyDown ( PreviewKeyDownEventArgs e ) : void
e System.Windows.Forms.PreviewKeyDownEventArgs
return void
        protected override void OnPreviewKeyDown(PreviewKeyDownEventArgs e)
        {
            if (UseTabAsInput && e.KeyCode == Keys.Tab) e.IsInputKey = true;
            base.OnPreviewKeyDown(e);
        }
FastObjectListView