Catel.MVVM.CommandManager.GetInputGesture C# (CSharp) Method

GetInputGesture() public method

Gets the input gesture for the specified command.
The specified command is not created using the method.
public GetInputGesture ( string commandName ) : Catel.Windows.Input.InputGesture
commandName string Name of the command.
return Catel.Windows.Input.InputGesture
        public InputGesture GetInputGesture(string commandName)
        {
            Argument.IsNotNullOrWhitespace("commandName", commandName);

            lock (_lockObject)
            {
                if (!_commands.ContainsKey(commandName))
                {
                    throw Log.ErrorAndCreateException<InvalidOperationException>("Command '{0}' is not yet created using the CreateCommand method", commandName);
                }

                return _commandGestures[commandName];
            }
        }