18 lines
296 B
C#
18 lines
296 B
C#
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;
|
|
}
|
|
}
|
|
}
|