| CombTextFieldCreate Method |
Create a comb text form field
The returned form field object is not yet used, but it is associated with the given target document.
Namespace: PdfTools.Toolbox.Pdf.FormsAssembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.3.0+2e7887cb8ae45c4d911ad975ad001ac2f1f257d8
Syntax public static CombTextField Create(
Document targetDocument,
int maxLength
)
Parameters
- targetDocument Document
-
the output document with which the returned object is associated
- maxLength Int32
-
the maximal character length for this field
Return Value
CombTextField
the newly created comb text field
Exceptions Exception | Condition |
---|
ArgumentException | if the targetDocument argument has already been closed |
ArgumentException | if the targetDocument argument is read-only |
ArgumentException | the target document contains form fields that have been implicitly copied by a call to
Copy(Document, Page, PageCopyOptions) with an argument options in which
FormFields was set to Copy |
ArgumentException | the target document contains unsigned signatures that have been implicitly copied by a call to
Copy(Document, Page, PageCopyOptions) with an argument options in which
UnsignedSignatures was set to Copy. |
ArgumentException | if maxLength is smaller than 0 |
ArgumentNullException | if targetDocument is . |
See Also