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

12 lines
198 B
C#

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