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

ASPxClientWebDocumentViewerEditingFieldChangedEventArgs Class

#Declaration

TypeScript
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

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

#Parameters

Name Type Description
field EditingField<unknown>
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

TypeScript
Field: DevExpress.Reporting.Viewer.Editing.EditingField

#Property Value

Type
EditingField<unknown>

#NewValue Property

Provides access to a new value of an editing field.

#Declaration

TypeScript
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

TypeScript
OldValue: any

#Property Value

Type Description
any

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

#Methods

#GetBrickText Method

#Declaration

TypeScript
GetBrickText(): string

#Returns

Type
string

#GetBrickValue Method

#Declaration

TypeScript
GetBrickValue(
    key?: string
): string

#Parameters

Name Type
key string

#Returns

Type
string