name property

String get name

The name of the host executable (WScript.exe or CScript.exe).

Implementation

_i2.String get name => _i3.getProperty(
      this,
      'Name',
    );
set name (String value)

Implementation

set name(_i2.String value) {
  _i3.setProperty(
    this,
    'Name',
    value,
  );
}