Difference between revisions of "IT SETUP TOOL GET MATCHING BLOCK"
From Macros Wiki
Line 1: | Line 1: | ||
[[:Category:Intermediate Tooling|{{Up}}]] | [[:Category:Intermediate Tooling|{{Up}}]] | ||
− | {{Command|syntax=IT_SETUP_TOOL_GET_MATCHING_BLOCK < | + | {{Command|syntax=IT_SETUP_TOOL_GET_MATCHING_BLOCK <tool> <index> <block make> <block name> |
− | |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=<toolgroup>|param1_desc=Toolgroup number | |param1=<toolgroup>|param1_desc=Toolgroup number |
Revision as of 19: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
- <toolgroup>
- Toolgroup number
- <station>
- Station 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]