menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataBoundEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class DataBoundEventArgs

    Event argument for DataBound events—fired when the Syncfusion dropdown completes loading and binding to a new data set.

    Inheritance
    System.Object
    DataBoundEventArgs
    Namespace: Syncfusion.Blazor.DropDowns
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class DataBoundEventArgs : Object
    Remarks

    Use DataBoundEventArgs to act when data collections are changed, refreshed, or rebound. This event enables data-driven UI and post-load analytics.

    Examples
    void OnDataBound(DataBoundEventArgs args)
    {
      LogCount(args.Items as IEnumerable<object>);
    }

    Constructors

    DataBoundEventArgs()

    Declaration
    public DataBoundEventArgs()

    Properties

    E

    [Obsolete] Retained for legacy data bind listeners. This is no longer supported.

    Declaration
    public object E { get; }
    Property Value
    Type
    System.Object

    Items

    Gets or sets the set of items loaded/bound by the last data operation.

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

    The bound data object or list, or null for empty state.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved