IT MACHINE GET BLOCK MAKE
From Macros Wiki
Jump to navigationJump to search
Command
- IT_MACHINE_GET_BLOCK_MAKE <index> <make>
- Get the make of a block library used by the current machine (MDD)
Parameters
- <index>
- Index to list of block makes
- <make>
- Variable for block make
Example
- IT_MACHINE_GET_DATA NUM_BLOCK_MAKES, iNum
- LOCAL ListBlockMakes$(iNum)
- FOR i=1 TO iNum
- IT_MACHINE_GET_BLOCK_NAME, i, a$
- ListBlockMakes$(i) = a$
- NEXT i