Motor rotate event arguments class.
Inheritance: System.EventArgs
 /// <summary>
 /// Raises the motor rotation started event.
 /// </summary>
 /// <param name="e">
 /// The event arguments.
 /// </param>
 protected virtual void OnMotorRotationStarted(MotorRotateEventArgs e)
 {
     if (this.RotationStarted != null)
     {
         this.RotationStarted(this, e);
     }
 }
Beispiel #2
0
		/// <summary>
		/// Raises the motor rotation started event.
		/// </summary>
		/// <param name="e">
		/// The event arguments.
		/// </param>
		protected virtual void OnMotorRotationStarted(MotorRotateEventArgs e) {
			if (this.RotationStarted != null) {
				this.RotationStarted(this, e);
			}
		}