Skip to main content
A newer version of this page is available. .

ASPxClientWebDocumentViewerEditingFieldChangedEventArgs Class

Declaration

declare class ASPxClientWebDocumentViewerEditingFieldChangedEventArgs extends ASPxClientEventArgs

Remarks

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

Inheritance

ASPxClientEventArgs
ASPxClientWebDocumentViewerEditingFieldChangedEventArgs

constructor(field, oldValue, newValue)

Creates a new instance of the ASPxClientWebDocumentViewerEditingFieldChangedEventArgs class with the specified settings.

Declaration

constructor(
    field: DevExpress.Reporting.Viewer.Editing.EditingField,
    oldValue: any,
    newValue: any
)

Parameters

Name Type Description
field EditingField

An editing field whose value has been changed. This value is assigned to the ASPxClientWebDocumentViewerEditingFieldChangedEventArgs.Field property.

oldValue any

An object that specifies an editing field’s previous value. This value is assigned to the ASPxClientWebDocumentViewerEditingFieldChangedEventArgs.OldValue property.

newValue any

An object that specifies an editing field’s new value. This value is assigned to the ASPxClientWebDocumentViewerEditingFieldChangedEventArgs.NewValue property.

Properties

Field Property

Gets an editing field whose value has been changed.

Declaration

Field: DevExpress.Reporting.Viewer.Editing.EditingField

Property Value

Type Description
EditingField

An object that specifies an editing field whose content has been changed.

NewValue Property

Provides access to a new value of an editing field.

Declaration

NewValue: any

Property Value

Type Description
any

An object that specifies an editing field’s new value.

OldValue Property

Provides access to a previous value of an editing field.

Declaration

OldValue: any

Property Value

Type Description
any

An object that specifies an editing field’s previous value.