15 lines
278 B
C#
15 lines
278 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class WorksheetNameChangingEventArgs : WorksheetEventArgs
|
|
{
|
|
public string NewName { get; set; }
|
|
|
|
public WorksheetNameChangingEventArgs(Worksheet sheet, string name) : base(sheet)
|
|
{
|
|
this.NewName = name;
|
|
}
|
|
}
|
|
}
|