18 lines
304 B
C#
18 lines
304 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class WorksheetColumnsEventArgs : EventArgs
|
|
{
|
|
public int Index { get; private set; }
|
|
|
|
public int Count { get; private set; }
|
|
|
|
public WorksheetColumnsEventArgs(int index, int count)
|
|
{
|
|
this.Index = index;
|
|
this.Count = count;
|
|
}
|
|
}
|
|
}
|