This documentation is archived and is not being maintained.
PlayRecordCallback Delegate
.NET Framework 1.1
This delegate is not used. For an example of enumerating the records of a metafile, see EnumerateMetafile.
[Visual Basic] <Serializable> Public Delegate Sub PlayRecordCallback( _ ByVal recordType As EmfPlusRecordType, _ ByVal flags As Integer, _ ByVal dataSize As Integer, _ ByVal recordData As IntPtr _ ) [C#] [Serializable] public delegate void PlayRecordCallback( EmfPlusRecordType recordType, int flags, int dataSize, IntPtr recordData ); [C++] [Serializable] public __gc __delegate void PlayRecordCallback( EmfPlusRecordType recordType, int flags, int dataSize, IntPtr recordData );
[JScript] In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.
Parameters [Visual Basic, C#, C++]
The declaration of your callback method must have the same parameters as the PlayRecordCallback delegate declaration.
- recordType
- Not used.
- flags
- Not used.
- dataSize
- Not used.
- recordData
- Not used.
Requirements
Namespace: System.Drawing.Imaging
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Drawing (in System.Drawing.dll)
See Also
Show: