You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SCJMapper-V2/Table/FormTabEvents.cs

40 lines
811 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SCJMapper_V2.Table
{
/// <summary>
/// A driver custom event to callback for exposure
/// </summary>
public class EditRowEventArgs : EventArgs
{
public string Actionmap { get; private set; }
public string Actionkey { get; private set; }
public int Nodeindex { get; private set; }
public EditRowEventArgs( string actionmap, string actionkey, int nodeindex )
{
Actionmap = actionmap;
Actionkey = actionkey;
Nodeindex = nodeindex;
}
}
/// <summary>
/// A driver custom event to callback for exposure
/// </summary>
public class UpdateEditEventArgs : EventArgs
{
public UpdateEditEventArgs( )
{
}
}
}