Files
radzen-blazor/Radzen.Blazor/RadzenSplitterEventArgs.cs

28 lines
749 B
C#
Raw Normal View History

using Radzen.Blazor;
namespace Radzen;
/// <summary>
/// Supplies information about a <see cref="RadzenSplitter.Expand" /> or <see cref="RadzenSplitter.Collapse" /> event that is being raised.
/// </summary>
public class RadzenSplitterEventArgs
{
/// <summary>
/// Gets the index of the pane.
/// </summary>
public int PaneIndex { get; set; }
/// <summary>
/// Gets the pane which the event applies to.
/// </summary>
/// <value>The pane.</value>
public RadzenSplitterPane? Pane { get; set; }
/// <summary>
/// Gets or sets a value which will cancel the event.
/// </summary>
/// <value><c>true</c> to cancel the event; otherwise, <c>false</c>.</value>
public bool Cancel { get; set; }
}