FormField Class
Represents a form field.
Inheritance
System.Object
FormField
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: Syncfusion.Maui.PdfViewer
Assembly: Syncfusion.Maui.PdfViewer.dll
Syntax
public class FormField : Object, INotifyPropertyChanged
Properties
CustomData
Gets or sets the custom information that will be saved in the form field. These data are only intended to be used as references; the Viewer will not display them.
Declaration
public string CustomData { get; set; }
Property Value
| Type |
|---|
| System.String |
FlattenOnSave
Gets or sets a flag indicating whether the form field should be flattened when saving the document.
Declaration
public bool FlattenOnSave { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
IsHidden
Gets or sets a value that indicates whether the form field is hidden.
Declaration
public bool IsHidden { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Name
Gets the name of the form field.
Declaration
public string Name { get; }
Property Value
| Type |
|---|
| System.String |
PageNumber
Gets the page number of the form field.
Declaration
public int PageNumber { get; }
Property Value
| Type |
|---|
| System.Int32 |
ReadOnly
Gets or sets a value that indicates whether the form field can be edited or not.
Declaration
public bool ReadOnly { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Widgets
Gets the list of child widgets associated with the form field.
Declaration
public List<Widget> Widgets { get; }
Property Value
| Type |
|---|
| System.Collections.Generic.List<Widget> |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
| Type |
|---|
| System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged