calculate property

PdfJavaScriptAction? get calculate

Gets or sets the JavaScript action to be performed to recalculate the value of this field when that of another field changes.

Implementation

PdfJavaScriptAction? get calculate => _calculate;
set calculate (PdfJavaScriptAction? value)

Implementation

set calculate(PdfJavaScriptAction? value) {
  if (value != null && _calculate != value) {
    _calculate = value;
    _helper.dictionary!.setProperty(PdfDictionaryProperties.c, _calculate);
    _helper.changed = true;
  }
}