Class IKeyPressedEventArgs
Defines the event arguments of key pressed action.
Inheritance
System.Object
IKeyPressedEventArgs
Implements
System.IEquatable<IKeyPressedEventArgs>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IKeyPressedEventArgs : Object, IEquatable<IKeyPressedEventArgs>
Constructors
IKeyPressedEventArgs()
Declaration
public IKeyPressedEventArgs()
Properties
Action
Defines the key action.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
System.String |
KeyEvent
Defines the event.
Declaration
public EventArgs KeyEvent { get; set; }
Property Value
Type | Description |
---|---|
System.EventArgs |
RequestType
Defines the request type.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(IKeyPressedEventArgs)
Returns boolean value by comparing iKeyPressedEventArgs
Declaration
public bool Equals(IKeyPressedEventArgs iKeyPressedEventArgs)
Parameters
Type | Name | Description |
---|---|---|
IKeyPressedEventArgs | iKeyPressedEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>