alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    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
    object
    DataBoundEventArgs
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.DropDowns
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class DataBoundEventArgs
    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
    [Obsolete("This property is obsolete and no longer supported.", false)]
    public object E { get; }
    Property Value
    Type
    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
    object

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

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