FileRateGet Method (MItemClass)
current playing rate value. Negative value means reverse playback.
Gets the playing rate of current file.
Value of rate Description
0..4x Smooth fast forward. All frames are decoded and after this frame rate is corrected.
4x..10x Hopping fast forward. For example, in 10x case there is seeking for each 10th frame.
-10x..0 Hopping back wind. For example, in -4x case there is seeking for each 4th frame in reverse direction of the playback. In this case the rate is rounded to the nearest integer value (e.g. -1.6x equals to -2x).

Syntax
Public Overridable Sub FileRateGet( _
   ByRef _pdblRate As Double _
) 
public virtual void FileRateGet( 
   out double _pdblRate
)
public procedure FileRateGet( 
   Out  _pdblRate: Double
); virtual; 
public: virtual void FileRateGet( 
   [PARAMFLAG::Out] double _pdblRate
) 

Parameters

_pdblRate
current playing rate value. Negative value means reverse playback.
Example
Dim dblRate As Double
m_objMFile.FileRateGet(dblRate)
double dblRate;
m_objMFile.FileRateGet(out dblRate);
dblRate: double;

m_objMFile.FileRateGet(dblRate);
See Also

Reference

MItemClass Class
MItemClass Members