fields property
PdfFormFieldCollection
get
fields
Gets the fields collection.
Implementation
PdfFormFieldCollection get fields {
if (_helper.isLoadedForm) {
_helper._fields ??= PdfFormFieldCollectionHelper.getCollection(this);
}
return _helper._fields!;
}