SetBoxSelection
Enable or disable box selection mode.
Function
void SetBoxSelection(selection: bool)
Parameters
- selection (bool): true to enable box selection mode, false to disable it. Defaults to false.
Remarks
When box selection mode is enabled, dragging with the left mouse button, or with one finger will draw a box. Any equipment that is completely surrounded by the box will have a selection event generated, as if each had been touched in turn.
Examples
Enable box selection mode.
SetBoxSelection(true);
Disable box selection mode.
SYM3.SetBoxSelection(false);