Back to Devexpress

ASPxClientReportDesignerComponentAddedEventArgs Class

xtrareports-js-aspxclientreportdesignercomponentaddedeventargs.md

latest2.0 KB
Original Source

ASPxClientReportDesignerComponentAddedEventArgs Class

Provides data for the ASPxClientReportDesigner.ComponentAdded event.

Declaration

ts
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

ts
constructor(
    model: any,
    parent: any
)

Parameters

NameTypeDescription
modelany

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

ts
Model: any

Property Value

TypeDescription
any

An object that specifies the component model.

|

Parent Property

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

Declaration

ts
Parent: any

Property Value

TypeDescription
any

An object that specifies the component parent.

|