format property
PdfJavaScriptAction?
get
format
Gets or sets the JavaScript action to be performed before the field is formatted
Implementation
PdfJavaScriptAction? get format => _format;
set
format
(PdfJavaScriptAction? value)
Implementation
set format(PdfJavaScriptAction? value) {
if (value != null && _format != value) {
_format = value;
_helper.dictionary!.setProperty(PdfDictionaryProperties.f, _format);
_helper.changed = true;
}
}