Graphics.EnumerateMetafile Method (Metafile, Point(), Graphics.EnumerateMetafileProc)
Sends the records in the specified Metafile, one at a time, to a callback method for display in a specified parallelogram.
Assembly: System.Drawing (in System.Drawing.dll)
Public Sub EnumerateMetafile ( metafile As Metafile, destPoints As Point(), callback As Graphics.EnumerateMetafileProc )
Parameters
- metafile
-
Type:
System.Drawing.Imaging.Metafile
Metafile to enumerate.
- destPoints
-
Type:
System.Drawing.Point()
Array of three Point structures that define a parallelogram that determines the size and location 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 callsPlayRecord, 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).
Available since 1.1