PsHandler.KeyCombination.SetModifiers C# (CSharp) Method

SetModifiers() public method

public SetModifiers ( bool ctrl, bool alt, bool shift ) : void
ctrl bool
alt bool
shift bool
return void
        public void SetModifiers(bool ctrl, bool alt, bool shift)
        {
            Alt = alt;
            Ctrl = ctrl;
            Shift = shift;
        }