xtrareports-js-aspxclientcustomizeelementseventargs.md
Provides data for the ASPxClientReportDesigner.CustomizeElements, ASPxClientReportDesigner.PreviewCustomizeElements and ASPxClientWebDocumentViewer.CustomizeElements events.
declare class ASPxClientCustomizeElementsEventArgs extends ASPxClientEventArgs
ASPxClientCustomizeElementsEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
ASPxClientEventArgs ASPxClientCustomizeElementsEventArgs
Initializes a new instance of the ASPxClientCustomizeElementsEventArgs class with the specified settings.
constructor(
elements: ASPxReportUIElement[]
)
| Name | Type | Description |
|---|---|---|
| elements | ASPxReportUIElement[] |
An array of ASPxReportUIElement objects. This value is assigned to the ASPxClientCustomizeElementsEventArgs.Elements property.
|
Provides access to the collection of UI elements.
Elements: ASPxReportUIElement[]
| Type | Description |
|---|---|
| ASPxReportUIElement[] |
An array of the ASPxReportUIElement objects.
|
Returns UI elements with the specified ID.
GetById(
templateId: string
): ASPxReportUIElement[]
| Name | Type | Description |
|---|---|---|
| templateId | string |
A string that specifies the element ID.
|
| Type | Description |
|---|---|
| ASPxReportUIElement[] |
An array of ASPxReportUIElement objects.
|