CPF/CPF.ReoGrid/Events/BorderAddedEventArgs.cs

18 lines
360 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Events
{
public class BorderAddedEventArgs : RangeEventArgs
{
public BorderPositions Pos { get; set; }
public RangeBorderStyle Style { get; set; }
public BorderAddedEventArgs(RangePosition range, BorderPositions pos, RangeBorderStyle style) : base(range)
{
this.Pos = pos;
this.Style = style;
}
}
}