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

ASPxClientCustomizeElementsEventArgs Class

#Declaration

TypeScript
declare class ASPxClientCustomizeElementsEventArgs extends ASPxClientEventArgs

#Remarks

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

#Inheritance

ASPxClientEventArgs
ASPxClientCustomizeElementsEventArgs

#constructor(elements)

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

#Declaration

TypeScript
constructor(
    elements: ASPxReportUIElement[]
)

#Parameters

Name Type Description
elements ASPxReportUIElement[]

An array of ASPxReportUIElement objects. This value is assigned to the ASPxClientCustomizeElementsEventArgs.Elements property.

#Properties

#Elements Property

Provides access to the collection of UI elements.

#Declaration

TypeScript

#Property Value

Type Description
ASPxReportUIElement[]

An array of the ASPxReportUIElement objects.

#Methods

#GetById(templateId) Method

Returns UI elements with the specified ID.

#Declaration

TypeScript
GetById(
    templateId: string
): ASPxReportUIElement[]

#Parameters

Name Type Description
templateId string

A string that specifies the element ID.

#Returns

Type Description
ASPxReportUIElement[]

An array of ASPxReportUIElement objects.