Files
Terminal.Gui/Terminal.Gui/Core/ThicknessEventArgs.cs
2023-03-27 14:15:26 -06:00

23 lines
467 B
C#

using System;
#nullable enable
namespace Terminal.Gui {
/// <summary>
/// Event arguments for the <see cref="Thickness"/> events.
/// </summary>
public class ThicknessEventArgs : EventArgs {
/// <summary>
/// Initializes a new instance of <see cref="ThicknessEventArgs"/>
/// </summary>
public ThicknessEventArgs ()
{
}
/// <summary>
/// The new Thickness.
/// </summary>
public Thickness Thickness { get; set; } = Thickness.Empty;
}
}