15 lines
235 B
C#
15 lines
235 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Outline
|
|
{
|
|
public class OutlineEventArgs : EventArgs
|
|
{
|
|
public IReoGridOutline Outline { get; set; }
|
|
|
|
public OutlineEventArgs(IReoGridOutline outline)
|
|
{
|
|
this.Outline = outline;
|
|
}
|
|
}
|
|
}
|