Skip to main content

AccordionItemEventArgs.ItemInfo Property

Returns information about an item related to the event.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public IAccordionItemInfo ItemInfo { get; }

Property Value

Type Description
IAccordionItemInfo

An object that stores information about an item related to the event.

Remarks

The example below shows how to get the ItemInfo property value:

<DxAccordion>
    <Items>
        <DxAccordionItem Click=@OnClick Text="Navigation and Layout" />
        @* ... *@
    </Items>
</DxAccordion>

@code {
  void OnClick(AccordionItemClickEventArgs args) {
      var Item = args.ItemInfo;
  }
}
See Also