Variable (Name example) | Description | Type | Default value (description) | Component configuration (description) | Remarks |
---|---|---|---|---|---|
cmdNum | Description of the interactive control cmdNum | number | Default value is optional and can be left blank | Used to set the interface controls bound to the current interactive item: component type, minimum value, maximum value, grouping, etc. | Remarks on the interactive control cmdNum |
cmdBool | Description of the interactive control cmdBool | Boolean (true/false) | Default value required, on or off | The same as above | Remarks on the interactive control cmdBool |
cmdStr | Description of the interactive control cmdStr | string | Default value is optional and can be left blank | The same as above | Remarks on the interactive control cmdStr |
cmdCombox | Description of the interactive control cmdCombox | selected | Default value is optional and can be left blank | The same as above | Remarks on the interactive control cmdCombox |
cmdBtn | Description of the interactive control cmdBtn | button | Button control is not bound to input item | The same as above | Remarks on the interactive control cmdBtn |
The message sent to the strategy after the interactive control is triggered (string):
After entering the interactive data “123” in the interactive control cmdNum input box, click the interactive control cmdNum button. The “GetCommand()” function in the strategy program will receive the message “cmdNum:123”.
Set the switch control of the interactive control cmdBool to on, and click the button of the interactive control cmdBool. The GetCommand()
function in the strategy program will receive the message: cmdBool:true
.
After entering the interactive data: abc
in the interactive control cmdStr input box, click the interactive control cmdStr button. The GetCommand()
function in the strategy program will receive the message: cmdStr:abc
.
After selecting the second option in the drop-down box of the interactive control cmdCombox, click the button of the interactive control cmdCombox. The GetCommand()
function in the strategy program will receive the message: cmdCombox:1
, where 1 represents the index of the selected option, the first option has an index of 0, and the second option has an index of 1.
Click the button of the interactive control cmdBtn. The GetCommand()
function in the strategy program will receive the message: cmdBtn
.