CPF/CPF.ReoGrid/Events/RowsDeletedEventArgs.cs
2024-06-24 10:15:59 +08:00

12 lines
196 B
C#

using System;
namespace CPF.ReoGrid.Events
{
public class RowsDeletedEventArgs : WorksheetRowsEventArgs
{
internal RowsDeletedEventArgs(int row, int count) : base(row, count)
{
}
}
}