14 lines
251 B
C#
14 lines
251 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Outline
|
|
{
|
|
public class BeforeOutlineCollapseEventArgs : OutlineEventArgs
|
|
{
|
|
public BeforeOutlineCollapseEventArgs(ReoGridOutline outline) : base(outline)
|
|
{
|
|
}
|
|
|
|
public bool IsCancelled { get; set; }
|
|
}
|
|
}
|