15 lines
270 B
C#
15 lines
270 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class BorderRemovedEventArgs : RangeEventArgs
|
|
{
|
|
public BorderPositions Pos { get; set; }
|
|
|
|
public BorderRemovedEventArgs(RangePosition range, BorderPositions pos) : base(range)
|
|
{
|
|
this.Pos = pos;
|
|
}
|
|
}
|
|
}
|