Skip to main content
All docs
V25.1
  • AccordionItemEventArgs.ItemInfo Property

    Returns information about an item related to the event.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.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 following code snippet gets 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