FileInOutSetTC Method (MMixerClass)
timecode of the in point
timecode of the out point
Sets the In and Out points as timecode.
If Out point is less then In point then it sets out point as timecode of the clip last frame.
Syntax
Public Overridable Sub FileInOutSetTC( _
   ByRef _pTCIn As M_TIMECODE, _
   ByRef _pTCOut As M_TIMECODE _
) 
public virtual void FileInOutSetTC( 
   ref M_TIMECODE _pTCIn,
   ref M_TIMECODE _pTCOut
)
public procedure FileInOutSetTC( 
   var  _pTCIn: M_TIMECODE;
   var  _pTCOut: M_TIMECODE
); virtual; 
public: virtual void FileInOutSetTC( 
   ref M_TIMECODE _pTCIn,
   ref M_TIMECODE _pTCOut
) 

Parameters

_pTCIn
timecode of the in point
_pTCOut
timecode of the out point
Example
Dim pTCIn As M_TIMECODE
Dim pTCOut As M_TIMECODE
et timecode positions for in and out points
DirectCast(curItem, IMFile).FileInOutSetTC(pTCIn, pTCOut)
M_TIMECODE pTCIn;
M_TIMECODE pTCOut;
//set timecode positions for in and out points
((IMFile)curItem).FileInOutSetTC(ref pTCIn, ref pTCOut);
pTCIn, pTCOut: M_TIMECODE;

myFile.FileInOutSetTC(pTCIn, pTCOut);
See Also

Reference

MMixerClass Class
MMixerClass Members