VIDEO.PointName

Previous  Next

 

name = VIDEO.PointName( nControl     AS INTEGER,

                        nPoint       AS INTEGER, 

                        lpszNewValue AS STRING ) AS STRING

 

 

 

 

Sets or gets the name of a digitized point.

 

Example:

 

FOR i = 1 TO VIDEO.NoOfPoints( nControl, MT_All_Frames )

  PRINT "Point #";i;" Name: ";VIDEO.PointName( nControl, i ),

  FOR frame = 1 TO 10

     strOut = FORMAT( "Frame %03d: %6.1f, %6.1f\n", frame, VIDEO.XCoord( nControl, frame, i, FALSE ),_

                                                           VIDEO.YCoord( nControl, frame, i, FALSE ) )

     PRINT strOut

  ENDFOR

ENDFOR