Class FormFieldFillEventArgs
This event arguments provides the necessary information about form field fill event.
Inheritance
System.Object
FormFieldFillEventArgs
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class FormFieldFillEventArgs : Object
Constructors
FormFieldFillEventArgs()
Declaration
public FormFieldFillEventArgs()
Properties
FieldName
Specifies form field name.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
IsCanceled
Specifies whether form fill action is canceled or not.
Declaration
public bool IsCanceled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Value
Specifies form field value.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the value of the form field. |
Methods
Equals(FormFieldFillEventArgs)
Indicates whether the current object is equal to another object of the same type.
Declaration
public bool Equals(FormFieldFillEventArgs formFieldFillEventArgs)
Parameters
Type | Name | Description |
---|---|---|
FormFieldFillEventArgs | formFieldFillEventArgs | An FormFieldFillEventArgs to compare. |
Returns
Type | Description |
---|---|
System.Boolean | true if the current object is equal to the other parameter; otherwise, false. |