mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
14 lines
344 B
C#
14 lines
344 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenSplitter.Resize" /> event that is being raised.
|
|
/// </summary>
|
|
public class RadzenSplitterResizeEventArgs : RadzenSplitterEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The new size of the pane
|
|
/// </summary>
|
|
public double NewSize { get; set; }
|
|
}
|
|
|