Interface IKeyCommand
Provides the functionality for single command.
Namespace: Syncfusion.Shared.Utils.KeyBinding
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public interface IKeyCommand
Properties
Name
Gets the name of the command.
Declaration
string Name { get; }
Property Value
| Type |
|---|
| System.String |
Methods
add_ProcessCommand(ProcessCommandEventHandler)
Declaration
void add_ProcessCommand(ProcessCommandEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ProcessCommandEventHandler | value |
Execute()
Executes command.
Declaration
void Execute()
remove_ProcessCommand(ProcessCommandEventHandler)
Declaration
void remove_ProcessCommand(ProcessCommandEventHandler value)
Parameters
| Type | Name | Description |
|---|---|---|
| ProcessCommandEventHandler | value |
Events
ProcessCommand
Occurs when command must be processed.
Declaration
event ProcessCommandEventHandler ProcessCommand
Event Type
| Type |
|---|
| ProcessCommandEventHandler |