C3DFile.GetPointNo

Previous  Next

 

nPointNo = C3DFile.GetPointNo( BYVAL nFile        AS INTEGER,

                               BYVAL strPointName AS STRING ) AS INTEGER

 


 

Returns the number (index) of the specified Point Name.  The number is always 1 based.  First point number always starts on 1.

 

Example:

 

' Rename point "RSHO" to "Right Shoulder"

 

DIM nPointNo AS INTEGER

 

nPointNo = C3DFile.GetPointNo( nFile, "RSHO" )

C3DFile.SetPointName( nFile, nPointNo, "Right Shoulder" )