pointWriteArray method

Future<HGrid> pointWriteArray(
  1. HRef id
)

Return the current status of a point's priority array.

The result is returned grid with following columns:

  • level: number from 1 - 17 (17 is default)
  • levelDis: human description of level
  • val: current value at level or null
  • who: who last controlled the value at this level

Implementation

Future<HGrid> pointWriteArray(HRef id) {
  var b = HGridBuilder();
  b.addCol("id");
  b.addRow([id]);

  return call("pointWrite", b.toGrid());
}