SetMaxAlarmBubbles
Set the maximum number of alarm bubbles generated by EnableAlarmBubbles.
Function
void SetMaxAlarmBubbles(maxBubbles: int)
Parameters
- maxBubbles (int): The maximum number of bubbles that will be produced at one time. Can be any number from 0 to 99. Defaults to 99.
Remarks
This is a standalone function, not a method of the SYM3 object. Call it once a project has been loaded with CreateSym3, and you’ve received a response from the SetOnProjectInitialised callback.
Example
Set the maximum to 42.
SetMaxAlarmBubbles(42);