mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
19 lines
502 B
C#
19 lines
502 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenTree.ItemContextMenu" /> event that is being raised.
|
|
/// </summary>
|
|
public class TreeItemContextMenuEventArgs : Microsoft.AspNetCore.Components.Web.MouseEventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the tree item text.
|
|
/// </summary>
|
|
public string? Text { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Gets the tree item value.
|
|
/// </summary>
|
|
public object? Value { get; internal set; }
|
|
}
|
|
|