PdfViewer.FormFieldValueChanged Event
Occurs after changes are applied to a form field.
Namespace: DevExpress.Maui.Pdf
Assembly: DevExpress.Maui.Pdf.dll
NuGet Package: DevExpress.Maui.Pdf
Declaration
public event EventHandler<PdfFormFieldValueChangedEventArgs> FormFieldValueChanged
Event Data
The FormFieldValueChanged event's data class is PdfFormFieldValueChangedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
FieldName | Returns the field name. |
NewValue | Gets the new value of a property. Inherited from ValueChangedEventArgs<T>. |
OldValue | Gets the old value of a property. Inherited from ValueChangedEventArgs<T>. |
See Also