18 lines
360 B
C#
18 lines
360 B
C#
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;
|
|
}
|
|
}
|
|
}
|