Class FormField
Represents the attributes of the Form Field.
Inheritance
System.Object
FormField
Namespace: Syncfusion.Blazor.SfPdfViewer
Assembly: Syncfusion.Blazor.SfPdfViewer.dll
Syntax
public class FormField : Object
Constructors
FormField()
Declaration
public FormField()
Properties
FontName
specifies the fontName of the signature.
Declaration
public string FontName { get; set; }
Property Value
Type |
---|
System.String |
Id
Gets the id of the form field.
Declaration
public string Id { get; }
Property Value
Type |
---|
System.String |
IsChecked
Gets or sets the state of the checkbox.
Declaration
public bool IsChecked { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the checkbox is checked; otherwise, false. The default value is false. |
Remarks
This property represents the checked or unchecked state of the checkbox.
IsReadOnly
If it is set as true, can't edit the form field in the PDF document. By default it is false.
Declaration
public bool IsReadOnly { get; set; }
Property Value
Type |
---|
System.Boolean |
IsSelected
Gets or sets the selection state of the radio button.
Declaration
public bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the radio button is selected; otherwise, false. The default value is false. |
Remarks
This property represents whether the radio button is selected or not.
Name
Gets the name of the form field.
Declaration
public string Name { get; }
Property Value
Type |
---|
System.String |
SignatureType
specifies the type of the signature.
Declaration
public List<SignatureType> SignatureType { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<SignatureType> |
Type
Gets the type of the form field.
Declaration
public FormFieldType Type { get; }
Property Value
Type |
---|
FormFieldType |
Value
Gets or sets the value of the form field.
Declaration
public string Value { get; set; }
Property Value
Type |
---|
System.String |