Class FormEventArgs
Inheritance
System.Object
FormEventArgs
Implements
System.IEquatable<FormEventArgs>
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class FormEventArgs : Object, IEquatable<FormEventArgs>
Constructors
FormEventArgs()
Declaration
public FormEventArgs()
Properties
Element
Returns the input element.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
ErrorElement
Returns the error element for corresponding input.
Declaration
public DOM ErrorElement { get; set; }
Property Value
Type | Description |
---|---|
DOM |
InputName
Returns the name of the input element.
Declaration
public string InputName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Message
Returns the error message.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Status
Returns the status input element.
Declaration
public string Status { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(FormEventArgs)
Declaration
public bool Equals(FormEventArgs formEventArgs)
Parameters
Type | Name | Description |
---|---|---|
FormEventArgs | formEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>