15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Events
|
|
{
|
|
public class ColumnsWidthChangedEventArgs : WorksheetColumnsEventArgs
|
|
{
|
|
public int Width { get; private set; }
|
|
|
|
internal ColumnsWidthChangedEventArgs(int index, int count, int width) : base(index, count)
|
|
{
|
|
this.Width = width;
|
|
}
|
|
}
|
|
}
|