Skip to main content
All docs
V25.2
  • DxDashboardModel.ComponentInstanceCaptured Event

    Occurs after the underlying component is created for the current model and allows access to the component instance.

    Namespace: DevExpress.ExpressApp.Dashboards.Blazor.Components.Models

    Assembly: DevExpress.ExpressApp.Dashboards.Blazor.v25.2.dll

    NuGet Package: DevExpress.ExpressApp.Dashboards.Blazor

    Declaration

    public event EventHandler<ComponentInstanceCapturedEventArgs<DxDashboard>> ComponentInstanceCaptured

    Event Data

    The ComponentInstanceCaptured event's data class is DevExpress.ExpressApp.Blazor.Components.Models.ComponentInstanceCapturedEventArgs<DxDashboard>.

    Remarks

    A component model replicates all parameters of the related component. You can use these parameters to configure the underlying component before creation. However, the model does not allow you to access the current component state (for instance, a page index) or call its methods directly.

    Handle the ComponentInstanceCaptured event to access underlying component instance and its full API.

    See Also