Class FormFieldInfo
Form field info.
Inherited Members
Namespace: Syncfusion.Blazor.DocumentEditor
Assembly: Syncfusion.Blazor.DocumentEditor.dll
Syntax
public abstract class FormFieldInfo
Constructors
FormFieldInfo()
Declaration
protected FormFieldInfo()
Properties
Enabled
Enable or disable form field.
Declaration
[JsonPropertyName("enabled")]
public bool Enabled { get; set; }
Property Value
| Type |
|---|
| bool |
HelpText
Tooltip text.
Declaration
[JsonPropertyName("helpText")]
public string HelpText { get; set; }
Property Value
| Type |
|---|
| string |
Name
Specifies the name of the form field.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
| Type |
|---|
| string |
Remarks
If a form field already exists in the document with the new name specified, the old form field name property will be cleared and it will not be accessible. Ensure the new name is unique.