C3D.close

Previous  Next

 

nStatus = C3D.close( Fid AS HANDLE ) AS INTEGER

 


 

Close the file specified by the Fid

 

Example:

 

DIM fid AS HANDLE

 

fid = C3D.Open( "e:\kalle.c3d" )

 

' Do some stuff with the file....

 

C3D.Close( fid )

 

END