Class FormFieldValueChangedEventArgs
Provides data for the FormFieldValueChanged event.
Inheritance
System.Object
FormFieldValueChangedEventArgs
Namespace: Syncfusion.SfPdfViewer.Android
Assembly: Syncfusion.SfPdfViewer.Android.dll
Syntax
public class FormFieldValueChangedEventArgs : EventArgs
Properties
FormFieldName
Gets the name of the form field.
Declaration
public string FormFieldName { get; }
Property Value
Type |
---|
System.String |
FormFieldType
Gets the type of the form field.
Declaration
public FormFieldType FormFieldType { get; }
Property Value
Type |
---|
FormFieldType |
NewValue
Gets the value of the form field after the event occurred.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Gets the value of the form field before the event occurred.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |