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; } } }