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





Sends the records of a selected rectangle from a 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,
    RectangleF destRect,
    RectangleF srcRect,
    GraphicsUnit srcUnit,
    Graphics.EnumerateMetafileProc callback
)

Visual Basic  Copy Code

Public Sub EnumerateMetafile( _
    metafile As Metafile, _
    destRect As RectangleF, _
    srcRect As RectangleF, _
    srcUnit As GraphicsUnit, _
    callback As Graphics.EnumerateMetafileProc _
)

 Parameters

metafile
A .NET Metafile object to enumerate.
destRect
A .NET RectangleF structure that specifies the location and size of the drawn metafile.
srcRect
A .NET RectangleF structure that specifies the portion of the metafile, relative to its upper-left corner, to draw.
srcUnit
Member of the .NET GraphicsUnit enumeration that specifies the unit of measure used to determine the portion of the metafile that the rectangle specified by the srcRect parameter contains.
callback
A .NET Graphics.EnumerateMetafileProc delegate that specifies the method to which the metafile records are sent.

 See Also