12 lines
198 B
C#
12 lines
198 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class RowsInsertedEventArgs : WorksheetRowsEventArgs
|
|
{
|
|
internal RowsInsertedEventArgs(int row, int count) : base(row, count)
|
|
{
|
|
}
|
|
}
|
|
}
|