Files
FSI.BT.IR.Tools/RoboSharp/EventArgObjects/RoboQueueCommandStartedEventArgs.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

33 lines
1008 B
C#

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; }
}
}