C3D.get_par_name

Previous  Next

 

Name = C3D.get_par_name( Fid       AS HANDLE, 

                         nIndex    AS INTEGER ) AS STRING

 


 

Returns the name of the parameter with the specified index.  The function returns the name in the form of GROUP:NAME.  An empty string is returned if the specified index does not match.  Parametesr are stored as they are created and may not be in any specific order.

 

The index is one based and always starts on 1.

 

Example

 

PRINT "List of Parameters...",

 

i = 1

 

DO

  s = C3D.get_par_name( fid, i )

  IF s <> "" THEN

     PRINT "   > ";s,

     i = i + 1

  ENDIF

UNTIL s = ""