C3D.save

Previous  Next

 

nStatus = C3D.save( Fid       AS HANDLE, 

                   [FileName  AS STRING=NULL] ) AS INTEGER

 


 

Save the opened file to file specified by filename.  If filename is omitted or blank, the current filename of the file is used

 

Example:

 

PRINT "Saving File...",

 

C3D.SAVE( fid )

C3D.SAVE( fid,"c:\kalle.c3d" )

C3D.CLOSE( fid )

END