12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Outline
|
|
{
|
|
public class AfterOutlineCollapseEventArgs : OutlineEventArgs
|
|
{
|
|
public AfterOutlineCollapseEventArgs(ReoGridOutline outline) : base(outline)
|
|
{
|
|
}
|
|
}
|
|
}
|