Back to Devexpress

ASPxClientReportDesignerCustomizeFieldListActionsEventArgs Class

xtrareports-js-aspxclientreportdesignercustomizefieldlistactionseventargs.md

latest2.0 KB
Original Source

ASPxClientReportDesignerCustomizeFieldListActionsEventArgs Class

Provides data for the ASPxClientReportDesigner.CustomizeFieldListActions event.

Declaration

ts
declare class ASPxClientReportDesignerCustomizeFieldListActionsEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs ASPxClientReportDesignerCustomizeFieldListActionsEventArgs

constructor(item, actions)

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

Declaration

ts
constructor(
    item: any,
    actions: any[]
)

Parameters

NameTypeDescription
itemany

An object that specifies the item that is currently being processed. This object is assigned to the Item property.

| | actions | any[] |

Specifies the collection that contains the current item’s available actions. This object is assigned to the Actions property.

|

Properties

Actions Property

Provides access to the current item’s available actions.

Declaration

ts
Actions: any[]

Property Value

TypeDescription
any[]

An array that contains the current item’s available actions.

|

Item Property

Specifies the Field List’s item that is currently being processed.

Declaration

ts
Item: any

Property Value

TypeDescription
any

An object that specifies the current Field List item.

|