FileStateGet Method (MPlaylistClass)
state of the file
time that remains for this state
Gets the current file state.
Syntax
Public Overridable Sub FileStateGet( _
   ByRef _peState As eMState, _
   ByRef _pdblTimeRemain As Double _
) 
public virtual void FileStateGet( 
   out eMState _peState,
   out double _pdblTimeRemain
)
public procedure FileStateGet( 
   Out  _peState: eMState;
   Out  _pdblTimeRemain: Double
); virtual; 
public: virtual void FileStateGet( 
   [PARAMFLAG::Out] eMState _peState,
   [PARAMFLAG::Out] double _pdblTimeRemain
) 

Parameters

_peState
state of the file
_pdblTimeRemain
time that remains for this state
Example
Dim _myState As eMState
Dim _myRemain As Double
m_objMFile.FileStateGet(_myState, _myRemain)
eMState _myState;
double _myRemain;
m_objMFile.FileStateGet(out _myState, out _myRemain);
var
myState: eMState;
myRemain: double;
begin
m_objMFile.FileStateGet(myState, myRemain);
end;
See Also

Reference

MPlaylistClass Class
MPlaylistClass Members