MFLoad Method (MFFrameClass)
size of a frame's data
pointer to frame's data
clone's type
Loads a full copy of all data (used internally for transfer data between process)
Syntax
Public Overridable Sub MFLoad( _
   ByVal _cbData As UInteger, _
   ByRef _pbData As Byte, _
   ByVal _eLoadType As eMFrameClone _
) 
public virtual void MFLoad( 
   uint _cbData,
   ref byte _pbData,
   eMFrameClone _eLoadType
)
public procedure MFLoad( 
    _cbData: LongWord;
   var  _pbData: Byte;
    _eLoadType: eMFrameClone
); virtual; 
public: virtual void MFLoad( 
   uint _cbData,
   ref byte _pbData,
   eMFrameClone _eLoadType
) 

Parameters

_cbData
size of a frame's data
_pbData
pointer to frame's data
_eLoadType
clone's type
Example

Here is example of how to use a frame that was saved by one process in another process (see MFSave method):

byte byteData = 0;
MFFrame loadFrame = new MFFrameClass();
loadFrame.MFLoad(data, ref byteData, eMFrameClone.eMFC_Full);
See Also

Reference

MFFrameClass Class
MFFrameClass Members