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