C3D.get_par_value

Previous  Next

 

Value = C3D.get_par_value(   Fid       AS HANDLE,

                             Parameter AS STRING,

                            [nRow      AS INTEGER=1],

                            [nCol      AS INTEGER=0],

                            [nDepth    AS INTEGER=0] ) AS VARIANT

 


 

Returns parameter value

 

Example

 

PRINT "Rate = ";C3D.GET_PAR_VALUE( hFid, "POINT:RATE", 1, 0, 0 ),

PRINT "Frames = ";C3D.GET_PAR_VALUE( hFid, "POINT:FRAMES", 1, 0, 0 ),

 

nPoints = C3D.GET_PAR_VALUE( hFid, "POINT:USED", 1, 0, 0 )

PRINT "Points = ";nPoints,

 

FOR i = 1 TO nPoints

  PRINT "Point[";i;"] = ";C3D.GET_PAR_VALUE( hFid, "POINT:LABELS", i, 0, 0 ),

NEXT i

 

nFrames = C3D.GET_PAR_VALUE( hFid, "POINT:FRAMES", 1, 0, 0 )

nFirstFrame = C3D.GET_FH_ITEM( hFid, C3D_fh_first_frame )