MFORMATSLib Namespace > MFFrameClass Class : MFFlagCheck Method |
Public Overridable Sub MFFlagCheck( _ ByVal _eFlagCheck As eMFrameFlags, _ ByRef _pnRes As Integer _ )
public virtual void MFFlagCheck( eMFrameFlags _eFlagCheck, out int _pnRes )
public procedure MFFlagCheck( _eFlagCheck: eMFrameFlags; Out _pnRes: Integer ); virtual;
public: virtual void MFFlagCheck( eMFrameFlags _eFlagCheck, [PARAMFLAG::Out] int _pnRes )
Here is an example of how to check flag for a frame:
MFFrame pFrame = null; try { m_objLive.SourceFrameConvertedGet(ref m_avProps, -1, out pFrame, ""); } catch {} int flagCheck; pFrame.MFFlagCheck(eMFrameFlags.eMFF_Break, out flagCheck);