PlayRecordCallback Delegate

Definition

This delegate is not used. For an example of enumerating the records of a metafile, see EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc).

public delegate void PlayRecordCallback(EmfPlusRecordType recordType, int flags, int dataSize, IntPtr recordData);
public delegate void PlayRecordCallback(EmfPlusRecordType recordType, int flags, int dataSize, IntPtr recordData);
type PlayRecordCallback = delegate of EmfPlusRecordType * int * int * nativeint -> unit
Public Delegate Sub PlayRecordCallback(recordType As EmfPlusRecordType, flags As Integer, dataSize As Integer, recordData As IntPtr)

Parameters

recordType
EmfPlusRecordType

Not used.

flags
Int32

Not used.

dataSize
Int32

Not used.

recordData
IntPtr

nativeint

Not used.

Remarks

Note

In .NET 6 and later versions, the System.Drawing.Common package, which includes this type, is only supported on Windows operating systems. Use of this type in cross-platform apps causes compile-time warnings and run-time exceptions. For more information, see System.Drawing.Common only supported on Windows.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to