2025-11-05 14:31:34 +02:00
|
|
|
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>
|
2026-01-07 12:29:58 +05:00
|
|
|
public RadzenSplitterPane? Pane { get; set; }
|
2025-11-05 14:31:34 +02:00
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
}
|
|
|
|
|
|