AccordionItemEventArgs.ItemInfo Property
In This Article
Returns information about an item related to the event.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
public IAccordionItemInfo ItemInfo { get; }
#Property Value
Type | Description |
---|---|
IAccordion |
An object that stores information about an item related to the event. |
#Remarks
The following code snippet gets the ItemInfo
property value:
Razor
<DxAccordion>
<Items>
<DxAccordionItem Click=@OnClick Text="Navigation and Layout" />
@* ... *@
</Items>
</DxAccordion>
@code {
void OnClick(AccordionItemClickEventArgs args) {
var Item = args.ItemInfo;
}
}
See Also