We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

what is the keycode of shift + tab

Hi, what is the key code of shift tab ? I am trying like this : if(e.Inner.KeyCode == Keys.Tab && e.Inner.Shift || e.Inner.KeyCode == Keys.Left) { GridCurrentCell cc = e.TableControl.CurrentCell; cc.MoveTo(cc.RowIndex, cc.ColIndex - 1); e.Inner.Handled = true; } Thanks, Prathima

1 Reply

AD Administrator Syncfusion Team September 8, 2005 02:01 PM UTC

Hi Prathima, You could use this code: if((Control.ModifierKeys & Keys.Shift) != 0 && (e.Inner.KeyCode == Keys.Tab)) { Console.WriteLine("Shift TAB"); } Best regards, Jay N

Loader.
Live Chat Icon For mobile
Up arrow icon