Graphics.EnumerateMetafile Method (Metafile, Rectangle, Graphics.EnumerateMetafileProc)
Sends the records of the specified Metafile, one at a time, to a callback method for display in a specified rectangle.
Namespace: System.Drawing
Assembly: System.Drawing (in System.Drawing.dll)
public void EnumerateMetafile( Metafile metafile, Rectangle destRect, Graphics.EnumerateMetafileProc callback )
Parameters
- metafile
- Type: System.Drawing.Imaging.Metafile
Metafile to enumerate.
- destRect
- Type: System.Drawing.Rectangle
Rectangle structure that specifies the location and size of the drawn metafile.
- callback
- Type: System.Drawing.Graphics.EnumerateMetafileProc
Graphics.EnumerateMetafileProc delegate that specifies the method to which the metafile records are sent.
This method enumerates the records contained in the specified metafile. Each record is individually sent to a callback method specified by the callback parameter. Typically, the callback method calls the PlayRecord method to "play back", or draw, the record.
If the callback method calls PlayRecord, it must do so by calling the PlayRecord method of the specific Metafile that is being enumerated.
For a code example, see EnumerateMetafile(Metafile, Point, Graphics.EnumerateMetafileProc).
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.