24 references to ShiftState
Microsoft.VisualStudio.IntegrationTest.Utilities (13)
Input\AbstractSendKeys.cs (9)
71var shiftState = (ShiftState)(((ushort)result >> 8) & 0xff); 170private static void AddInputs(List<NativeMethods.INPUT> inputs, VirtualKey virtualKey, ShiftState shiftState = 0) 172if ((shiftState & ShiftState.Shift) != 0) 177if ((shiftState & ShiftState.Ctrl) != 0) 182if ((shiftState & ShiftState.Alt) != 0) 190if ((shiftState & ShiftState.Shift) != 0) 195if ((shiftState & ShiftState.Ctrl) != 0) 200if ((shiftState & ShiftState.Alt) != 0)
Input\KeyPress.cs (2)
10public readonly ShiftState ShiftState; 12public KeyPress(VirtualKey virtualKey, ShiftState shiftState)
OutOfProcess\ChangeSignatureDialog_OutOfProc.cs (2)
30=> VisualStudioInstance.Editor.SendKeys(new KeyPress(VirtualKey.R, ShiftState.Ctrl), new KeyPress(VirtualKey.V, ShiftState.Ctrl));
Microsoft.VisualStudio.LanguageServices.IntegrationTests (11)
AbstractIntegrationTest.cs (3)
102=> new KeyPress(virtualKey, ShiftState.Ctrl); 105=> new KeyPress(virtualKey, ShiftState.Shift); 108=> new KeyPress(virtualKey, ShiftState.Alt);
CSharp\CSharpIntelliSense.cs (2)
154VisualStudio.Editor.SendKeys(new KeyPress(VirtualKey.Space, ShiftState.Ctrl | ShiftState.Alt));
CSharp\CSharpReplClassification.cs (1)
47VisualStudio.SendKeys.Send(new KeyPress(VirtualKey.Right, ShiftState.Alt));
CSharp\CSharpSignatureHelp.cs (1)
78VisualStudio.Editor.SendKeys(new object[] { VirtualKey.Home, new KeyPress(VirtualKey.End, ShiftState.Shift), VirtualKey.Delete });
VisualBasic\BasicEndConstruct.cs (2)
77VisualStudio.Editor.SendKeys(new KeyPress(VirtualKey.Backspace, ShiftState.Ctrl)); 93VisualStudio.Editor.SendKeys(new KeyPress(VirtualKey.Backspace, ShiftState.Ctrl));
VisualBasic\BasicIntelliSense.cs (2)
277VisualStudio.Editor.SendKeys(new KeyPress(VirtualKey.Space, ShiftState.Ctrl | ShiftState.Alt));