ASPxClientWebDocumentViewerEditingFieldChangedEventArgs Class
Provides data for the ASPxClientWebDocumentViewer.EditingFieldChanged and ASPxClientReportDesigner.PreviewEditingFieldChanged events.
Declaration
declare class ASPxClientWebDocumentViewerEditingFieldChangedEventArgs extends ASPxClientEventArgs
Remarks
ASPxClientWebDocumentViewerEditingFieldChangedEventArgs objects are automatically created, initialized and passed to corresponding event handlers.
Inheritance
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<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
Field: DevExpress.Reporting.Viewer.Editing.EditingField
Property Value
| Type |
|---|
| EditingField<unknown> |
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. |
Methods
GetBrickText Method
Declaration
GetBrickText(): string
Returns
| Type |
|---|
| string |
GetBrickValue Method
Declaration
GetBrickValue(
key?: string
): string
Parameters
| Name | Type |
|---|---|
| key | string |
Returns
| Type |
|---|
| string |