MovablePython.Hotkey.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : Hotkey
return Hotkey
        public Hotkey Clone()
        {
            // Clone the whole object
            return new Hotkey(this.keyCode, this.shift, this.control, this.alt, this.windows);
        }