CPF/CPF.ReoGrid/Events/ExceptionHappenEventArgs.cs

15 lines
286 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Events
{
public class ExceptionHappenEventArgs : WorksheetEventArgs
{
public Exception Exception { get; set; }
public ExceptionHappenEventArgs(Worksheet sheet, Exception exception) : base(sheet)
{
this.Exception = exception;
}
}
}