javaScript property

String javaScript

Gets or sets the javascript code to be executed when this action is executed.

Implementation

String get javaScript => _javaScript;
void javaScript=(String value)

Implementation

set javaScript(String value) {
  if (_javaScript != value) {
    _javaScript = value;
    PdfActionHelper.getHelper(this)
        .dictionary
        .setString(PdfDictionaryProperties.js, _javaScript);
  }
}