Difference between revisions of "IT SETUP TOOL GET MATCHING BLOCK"
From Macros Wiki
Line 4: | Line 4: | ||
|description=:Get a one of the blocks that matches the filters used for a tool | |description=:Get a one of the blocks that matches the filters used for a tool | ||
− | |param1=< | + | |param1=<tool>|param1_desc=Tool number |
− | |param2=< | + | |param2=<sindex>|param2_desc=Index to the list of matching blocks (1=first matching block) |
− | + | |param3=<block make>|param3_desc=String variable for the block make | |
− | | | + | |param4=<block name>|param4_desc=String variable for the block name |
− | | | ||
}} | }} | ||
Revision as of 18:05, 16 April 2015
Command
- IT_SETUP_TOOL_GET_MATCHING_BLOCK <tool> <index> <block make> <block name>
- Get a one of the blocks that matches the filters used for a tool
Parameters
- <tool>
- Tool number
- <sindex>
- Index to the list of matching blocks (1=first matching block)
- <block make>
- String variable for the block make
- <block name>
- String variable for the block name
Example
- IT_SETUP_TOOL_GET_NUM_MATCHING_BLOCKS, 4, iNumBlocks
- FOR i=1 TO iNumBlocks
- IT_SETUP_TOOL_GET_MATCHING_BLOCK 4, i, a$, b$
- MESSAGE "Matching block %i of %iNumBlocks. Make = %a$, name = %b$"
- NEXT i
[[Category:IT_Setup_Data]