Class KeyboardEventArgs
Event arguments for sequencer view keyboard dialog
Inheritance
System.Object
System.EventArgs
KeyboardEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.Input
Assembly: Phoenix.Plugin.Input.dll
Syntax
public class KeyboardEventArgs : EventArgs
Constructors
View SourceKeyboardEventArgs(Boolean, Double, Double)
Initializes a new instance of the KeyboardEventArgs class
Declaration
public KeyboardEventArgs(bool pressEnterWhenDone, double buttonPressTimeSec, double actionWaitTimeSec)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | pressEnterWhenDone | Whether to press enter after entering text |
System.Double | buttonPressTimeSec | How long to wait between press and release of a button |
System.Double | actionWaitTimeSec | How long to wait between actions |
Properties
View SourceActionWaitTime
Gets or sets a value indicating how long to wait between button presses
Declaration
public double ActionWaitTime { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
ButtonPressTime
Gets or sets a value specifying how long to wait between button press and release
Declaration
public double ButtonPressTime { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
PressEnter
Gets or sets a value indicating whether to press enter after entering text
Declaration
public bool PressEnter { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |