queryCommandValue method

String? queryCommandValue(
  1. String commandId
)

Return the commands value.

TODO range option needs to be added, uses current range selection.

Implementation

String? queryCommandValue(String commandId) {
  if (!_ready) throw AlohaException(AlohaException.notReady);
  return _alohaContext.callMethod('queryCommandValue', [commandId, null]);
}