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