Show / Hide Table of Contents

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 Source

KeyboardEventArgs(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 Source

ActionWaitTime

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
View Source

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
View Source

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
  • View Source
In This Article
Back to top Generated by DocFX