Show / Hide Table of Contents

Class IgbItemRequestedEventArgs

Inheritance
System.Object
IgbItemRequestedEventArgs
Namespace: IgniteUI.Blazor.Controls
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbItemRequestedEventArgs : Object

Constructors

IgbItemRequestedEventArgs()

Declaration
public IgbItemRequestedEventArgs()

Properties

Item

Gets or sets the item being requested.

Declaration
public object Item { get; set; }
Property Value
Type Description
System.Object

Values

Gets or sets the values that will be propagated to the requested item when the event is complete.

Declaration
public Dictionary<string, object> Values { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>

ValuesPropagated

Gets or sets whether the values have already been propagated to the item. Set this to true if you do not want the values propagated after the event is completed.

Declaration
public bool ValuesPropagated { get; set; }
Property Value
Type Description
System.Boolean