CPF/CPF.ReoGrid/Events/WorksheetRowsEventArgs.cs

18 lines
296 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Events
{
public class WorksheetRowsEventArgs : EventArgs
{
public int Row { get; private set; }
public int Count { get; private set; }
internal WorksheetRowsEventArgs(int row, int count = 1)
{
this.Row = row;
this.Count = count;
}
}
}