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