C3D.get_shared

Previous  Next

 

filename = C3D.get_shared( index AS INTEGER ) AS STRING

 


 

Returns the filename of the shared file specified by index.  Max number of shared files are 8.  Note; Index starts at 1

 

Example

 

' List shared files.  We can have up to 8 shared C3D Files

 

DIM i AS INTEGER

 

FOR i = 1 TO C3D_MAX_SHARED

  PRINT i;": ";C3D.GET_SHARED( i ),

NEXT i