Back to Devexpress

ASPxClientCustomizeParameterEditorsEventArgs Class

xtrareports-js-aspxclientcustomizeparametereditorseventargs.md

latest2.5 KB
Original Source

ASPxClientCustomizeParameterEditorsEventArgs Class

Provides data for the ASPxClientWebDocumentViewer.CustomizeParameterEditors and ASPxClientReportDesigner.CustomizeParameterEditors events.

Declaration

ts
declare class ASPxClientCustomizeParameterEditorsEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientCustomizeParameterEditorsEventArgs

constructor(parameter, info)

For internal use. Initializes a new instance of the ASPxClientCustomizeParameterEditorsEventArgs class with the specified settings.

Declaration

ts
constructor(
    parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor,
    info: DevExpress.Analytics.Utils.ISerializationInfo
)

Parameters

NameTypeDescription
parameterIParameterDescriptor

An IParameterDescriptor object.

| | info | ISerializationInfo |

An ISerializationInfo object.

|

Properties

info Property

Provides access to an object that stores information required to serialize a parameter editor.

Declaration

ts
info: DevExpress.Analytics.Utils.ISerializationInfo

Property Value

TypeDescription
ISerializationInfo

An ISerializationInfo object.

|

parameter Property

Provides access to an object that stores information about a parameter.

Declaration

ts
parameter: DevExpress.Reporting.Viewer.Parameters.IParameterDescriptor

Property Value

TypeDescription
IParameterDescriptor

An IParameterDescriptor object.

|