Supplies settings to Brass from inside a handler
Some handlers allow the SSE to pass values back into Brass, for example the PreDisplayConfig handler accepts flags to indicate what (if any) parts of the standard plugin configuration window should be disabled. To supply these flags to Brass, use the SETFLAGS statement.
SETFLAGS can pass back any type and combination of flags to Brass, however it is up to the handler receiving the flags to act on them. Therefore you must always refer to the handler reference for the specific handler to understand what flags are available and how to use them.
Warning: SETFLAGS immediately passes the supplied flags back to Brass therefore you should only call SETFLAGS once, at the end of your handler code. Calling SETFLAGS multiple times will cause Brass to disregard all but the last set of flags passed.
Parameters
Expression
The expression is evaluated and passed back to the calling handler.
Return Value
None.
Example Code
None. Refer to the handler reference.