 | PdfInteractiveFormsRemoveField Method |
Removes the first occurrence of a specific form field from the
Fields.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic bool RemoveField(
PdfField field
)
Public Function RemoveField (
field As PdfField
) As Boolean
public:
bool RemoveField(
PdfField^ field
)
member RemoveField :
field : PdfField -> bool public boolean RemoveField(
PdfField field
)
function RemoveField(field);
Parameters
- field PdfField
- The form field to remove from the Fields.
Return Value
Booleantrue if
field was successfully removed from
Fields;
otherwise, false. This method also returns false if item is not found in the
Fields collection.
RemarksFor the changes to take effect, you need to call the
ReloadForms method.
See Also