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