14 lines
240 B
C#
14 lines
240 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.Events
|
|||
|
{
|
|||
|
public class CurrentWorksheetChangedEventArgs : WorksheetEventArgs
|
|||
|
{
|
|||
|
public int Index { get; set; }
|
|||
|
|
|||
|
public CurrentWorksheetChangedEventArgs(Worksheet sheet) : base(sheet)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|