IT BLOCKS GET MAKE NAME

From Macros Wiki
Jump to navigationJump to search

Up

Command

IT_BLOCKS_GET_MAKE_NAME <index> <make>


Get the name of a block library

Parameters

<index>
Index to the list of block libraries (between 1 and the number of libraries)
<make>
String variable for the make

Example

LOCAL ListMakes$(100), iNum

IT_BLOCKS_GET_NUM_MAKES iNum

FOR i=1 TO iNum
  IT_BLOCKS_GET_MAKE_NAME i, a$
  ListMakes$(i) = a$
NEXT i