mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
28 lines
749 B
C#
28 lines
749 B
C#
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; }
|
|
}
|
|
|