Returns a Keys enumeration of all the modifiers used (such as Alt, Control and Shift) in the key event
This is useful for telling you which of Control, Alt and Shift are current depressed
C# Eg., if ((Keys.Shift & e.Modifiers) > 0 && (Keys.Control & e.Modifiers) > 0) {}