Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ASPxClientReportDesignerComponentAddedEventArgs Class

Provides data for the ASPxClientReportDesigner.ComponentAdded event.

#Declaration

TypeScript
declare class ASPxClientReportDesignerComponentAddedEventArgs extends ASPxClientEventArgs

#Remarks

ASPxClientReportDesignerComponentAddedEventArgs objects are automatically created, initialized and passed to corresponding event handlers.

#Inheritance

ASPxClientEventArgs
ASPxClientReportDesignerComponentAddedEventArgs

#constructor(model, parent)

Initializes a new instance of the ASPxClientReportDesignerComponentAddedEventArgs class with the specified settings.

#Declaration

TypeScript
constructor(
    model: any,
    parent: any
)

#Parameters

Name Type Description
model any

An object that specifies the model of a component that has been added to a report. This value is assigned to the ASPxClientReportDesignerComponentAddedEventArgs.Model property.

parent any

An object that specifies the parent of a component that has been added to a report. This value is assigned to the ASPxClientReportDesignerComponentAddedEventArgs.Parent property.

#Properties

#Model Property

Gets the model of a component that has been added to a report.

#Declaration

TypeScript
Model: any

#Property Value

Type Description
any

An object that specifies the component model.

#Parent Property

Gets the parent of a component that has been added to a report.

#Declaration

TypeScript
Parent: any

#Property Value

Type Description
any

An object that specifies the component parent.