C3DFile.GetPointName

Previous  Next

 

strPointName = C3DFile.GetPointName( BYVAL nFile    AS INTEGER, 

                                     BYVAL nPointNo AS INTEGER ) AS STRING

 


 

Returns the name of the specified Point

 

Example:

 

FOR i = 1 TO C3DFile.GetNoOfPoints( nFile )

  strName = FORMAT( "Point %2d Name : %s", i, C3DFile.GetPointName( nFile, i ) )

  PRINT strName,

NEXT i