15 lines
286 B
C#
15 lines
286 B
C#
![]() |
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|