Class FormFieldFillEventArgs
This event arguments provides the necessary information about form field fill event.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public class FormFieldFillEventArgs
Constructors
FormFieldFillEventArgs()
Declaration
public FormFieldFillEventArgs()
Properties
FieldName
Specifies form field name.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
IsCanceled
Specifies whether form fill action is canceled or not.
Declaration
[JsonPropertyName("isCanceled")]
public bool IsCanceled { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Value
Specifies form field value.
Declaration
[JsonPropertyName("value")]
public object Value { get; set; }
Property Value
| Type | Description |
|---|---|
| object | An object representing the value of the form field. |