Search
GdiGraphics.EnumerateMetafile Method (Metafile, Rectangle, Graphics.EnumerateMetafileProc)
See Also
 





Sends the records of the specified Metafile object, one at a time, to a callback method for display in a specified rectangle.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public void EnumerateMetafile (
    Metafile metafile,
    Rectangle destRect,
    Graphics.EnumerateMetafileProc callback
)

Visual Basic  Copy Code

Public Sub EnumerateMetafile( _
    metafile As Metafile, _
    destRect As Rectangle, _
    callback As Graphics.EnumerateMetafileProc _
)

 Parameters

metafile
A .NET Metafile object to enumerate.
destRect
A .NET Rectangle structure that specifies the location and size of the drawn metafile.
callback
A .NET Graphics.EnumerateMetafileProc delegate that specifies the method to which the metafile records are sent.

 See Also