This commit is contained in:
Stephan Maier
2024-08-27 08:10:27 +02:00
parent eb5c2fa502
commit 647f938eee
617 changed files with 73086 additions and 7137 deletions

View File

@@ -0,0 +1,32 @@
using RoboSharp.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RoboSharp.EventArgObjects
{
/// <summary>
/// EventArgs to declare when a RoboCommand process starts
/// </summary>
public class RoboQueueCommandStartedEventArgs : EventArgs
{
private RoboQueueCommandStartedEventArgs() : base() { }
internal RoboQueueCommandStartedEventArgs(IRoboCommand cmd) : base() { Command = cmd; StartTime = DateTime.Now; }
/// <summary>
/// Command that started.
/// </summary>
public IRoboCommand Command { get; }
/// <summary>
/// Returns TRUE if the command's <see cref="RoboSharp.Results.ProgressEstimator"/> is available for binding
/// </summary>
public bool ProgressEstimatorAvailable => Command.IsRunning;
/// <summary>
/// Local time the command started.
/// </summary>
public DateTime StartTime { get; }
}
}