StatusBarEventArgs
Represents the status bar event argument data. This class cannot be inherited.
using System;
namespace Relativity.DataExchange.Process
{
[Serializable]
public sealed class StatusBarEventArgs : EventArgs
{
public string Message { get; }
public string PopupText { get; }
public StatusBarEventArgs(string message, string popupText)
{
Message = message;
PopupText = popupText;
}
}
}