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.
Up arrow icon