10 references to ControlKeyState
mscorlib (10)
system\console.cs (10)
1448
return (((
ControlKeyState
) ir.keyEvent.controlKeyState)
1449
& (
ControlKeyState
.LeftAltPressed |
ControlKeyState
.RightAltPressed)) != 0;
1549
ControlKeyState
state = (
ControlKeyState
) ir.keyEvent.controlKeyState;
1550
bool shift = (state &
ControlKeyState
.ShiftPressed) != 0;
1551
bool alt = (state & (
ControlKeyState
.LeftAltPressed |
ControlKeyState
.RightAltPressed)) != 0;
1552
bool control = (state & (
ControlKeyState
.LeftCtrlPressed |
ControlKeyState
.RightCtrlPressed)) != 0;