Graphics.EnumerateMetafile 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 레코드를 보냅니다.
오버로드
EnumerateMetafile(Metafile, PointF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 사각형에 표시하기 위해 Metafile콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 사각형에 표시하기 위해 Metafile콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point[], Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 Point 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF[], RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 PointF 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF[], RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 Point 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 사각형에 표시하기 위해 Metafile콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 지점에 표시하기 위해 Metafile선택한 사각형의 레코드를 한 번에 하나씩 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, srcRect As Rectangle, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
적용 대상
EnumerateMetafile(Metafile, Point[], Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 병렬 프로그래밍에 표시하기 위해 Metafile선택한 사각형의 레코드를 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), srcRect As Rectangle, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 Point 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 지점에 표시하기 위해 Metafile선택한 사각형의 레코드를 한 번에 하나씩 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, srcRect As RectangleF, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
적용 대상
EnumerateMetafile(Metafile, PointF[], RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 병렬 프로그래밍에 표시하기 위해 Metafile선택한 사각형의 레코드를 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), srcRect As RectangleF, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 PointF 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 이미지 특성을 사용하여 지정된 사각형에 표시하기 위해 Metafile한 번에 하나씩 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, srcRect As Rectangle, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 이미지 특성을 사용하여 지정된 사각형에 표시하기 위해 Metafile한 번에 하나씩 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit unit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit unit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, srcRect As RectangleF, unit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- unit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 지정된 사각형에 표시하기 위해 Metafile콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF[], Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 병렬 프로그래밍에 표시할 콜백 메서드로 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 PointF 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point[], Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 병렬 프로그래밍에 표시할 콜백 메서드로 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 Point 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 지점에 표시할 콜백 메서드로 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 Metafile 메서드를 호출하여 호출해야 합니다.
imageAttr
매개 변수로 지정된 이미지 특성은 메타파일을 작성할 때 지정된 특성을 대체합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point[], Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile레코드를 지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), callback As Graphics.EnumerateMetafileProc)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 레코드를 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, callback As Graphics.EnumerateMetafileProc)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF[], Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile레코드를 지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), callback As Graphics.EnumerateMetafileProc)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 PointF 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, callback As Graphics.EnumerateMetafileProc)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, callback As Graphics.EnumerateMetafileProc)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 레코드를 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point[], Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile레코드를 지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
적용 대상
EnumerateMetafile(Metafile, PointF, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 레코드를 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, PointF[], Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile레코드를 지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::PointF> ^ destPoints, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF[] destPoints, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF[] * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As PointF(), callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 PointF 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Rectangle, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Rectangle destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Rectangle destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Rectangle * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As Rectangle, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, RectangleF, Graphics+EnumerateMetafileProc, IntPtr)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 사각형에 표시할 콜백 메서드에 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::RectangleF destRect, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.RectangleF destRect, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.RectangleF * System.Drawing.Graphics.EnumerateMetafileProc * nativeint -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destRect As RectangleF, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr)
매개 변수
- destRect
- RectangleF
그려진 메타파일의 위치와 크기를 지정하는 RectangleF 구조체입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc, IntPtr, ImageAttributes)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 이미지 특성을 사용하여 지정된 지점에 표시할 콜백 메서드로 지정된 Metafile레코드를 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback, IntPtr callbackData, System::Drawing::Imaging::ImageAttributes ^ imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes? imageAttr);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback, IntPtr callbackData, System.Drawing.Imaging.ImageAttributes imageAttr);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Graphics.EnumerateMetafileProc * nativeint * System.Drawing.Imaging.ImageAttributes -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, callback As Graphics.EnumerateMetafileProc, callbackData As IntPtr, imageAttr As ImageAttributes)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
- imageAttr
- ImageAttributes
그린 이미지의 이미지 특성 정보를 지정하는 ImageAttributes.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
EnumerateMetafile(Metafile, Point, Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
적용 대상
EnumerateMetafile(Metafile, PointF, RectangleF, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::PointF destPoint, System::Drawing::RectangleF srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.PointF destPoint, System.Drawing.RectangleF srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.PointF * System.Drawing.RectangleF * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As PointF, srcRect As RectangleF, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- srcRect
- RectangleF
그릴 메타파일의 왼쪽 위 모서리를 기준으로 메타파일의 부분을 지정하는 RectangleF 구조체입니다.
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
적용 대상
EnumerateMetafile(Metafile, Point[], Rectangle, GraphicsUnit, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
선택한 사각형의 레코드를 Metafile지정된 병렬 프로그래밍에 표시하기 위해 콜백 메서드로 한 번에 하나씩 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, cli::array <System::Drawing::Point> ^ destPoints, System::Drawing::Rectangle srcRect, System::Drawing::GraphicsUnit srcUnit, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point[] destPoints, System.Drawing.Rectangle srcRect, System.Drawing.GraphicsUnit srcUnit, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point[] * System.Drawing.Rectangle * System.Drawing.GraphicsUnit * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoints As Point(), srcRect As Rectangle, srcUnit As GraphicsUnit, callback As Graphics.EnumerateMetafileProc)
매개 변수
- srcUnit
- GraphicsUnit
srcRect
매개 변수로 지정된 사각형이 포함하는 메타파일 부분을 결정하는 데 사용되는 측정 단위를 지정하는 GraphicsUnit 열거형의 멤버입니다.
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
코드 예제는 EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)참조하세요.
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
destPoints
매개 변수는 병렬 프로그래밍의 세 점을 지정합니다. 세 Point 구조체는 병렬 프로그래밍의 왼쪽 위, 오른쪽 위 및 왼쪽 아래 모서리를 나타냅니다. 네 번째 점이 처음 세 점부터 추정되어 병렬 프로그래밍을 형성합니다. 그려진 메타파일은 병렬 프로그래밍에 맞게 배율 조정되고 전단됩니다.
srcRect
매개 변수로 지정된 사각형 외부에서 발생하는 모든 그리기는 무시됩니다.
적용 대상
EnumerateMetafile(Metafile, Point, Graphics+EnumerateMetafileProc)
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
- Source:
- Graphics.cs
지정된 Metafile한 번에 하나씩 지정된 지점에 표시할 콜백 메서드로 레코드를 보냅니다.
public:
void EnumerateMetafile(System::Drawing::Imaging::Metafile ^ metafile, System::Drawing::Point destPoint, System::Drawing::Graphics::EnumerateMetafileProc ^ callback);
public void EnumerateMetafile (System.Drawing.Imaging.Metafile metafile, System.Drawing.Point destPoint, System.Drawing.Graphics.EnumerateMetafileProc callback);
member this.EnumerateMetafile : System.Drawing.Imaging.Metafile * System.Drawing.Point * System.Drawing.Graphics.EnumerateMetafileProc -> unit
Public Sub EnumerateMetafile (metafile As Metafile, destPoint As Point, callback As Graphics.EnumerateMetafileProc)
매개 변수
- callback
- Graphics.EnumerateMetafileProc
메타파일 레코드가 전송되는 메서드를 지정하는 Graphics.EnumerateMetafileProc 대리자입니다.
예제
다음 코드 예제에서는 해당 개인 멤버 중 하나로 Metafile 있는 폼을 만듭니다.
OnPaint 메서드는 메타파일의 각 레코드에 대한 폼의 MetafileCallback
메서드를 호출하는 EnumerateMetafile호출합니다.
MetafileCallback
메서드는 PlayRecord 메서드를 호출합니다.
MetafileCallback
메서드는 레코드 데이터를 IntPtr수신하지만 PlayRecord 메서드는 레코드 데이터가 바이트 배열이어야 합니다.
Copy 호출은 레코드 데이터를 바이트 배열에 복사하여 PlayRecord전달할 수 있도록 합니다.
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Forms;
// for Marshal.Copy
using System.Runtime.InteropServices;
public class Form1 : Form
{
private Metafile metafile1;
private Graphics.EnumerateMetafileProc metafileDelegate;
private Point destPoint;
public Form1()
{
metafile1 = new Metafile(@"C:\Test.wmf");
metafileDelegate = new Graphics.EnumerateMetafileProc(MetafileCallback);
destPoint = new Point(20, 10);
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.EnumerateMetafile(metafile1, destPoint, metafileDelegate);
}
private bool MetafileCallback(
EmfPlusRecordType recordType,
int flags,
int dataSize,
IntPtr data,
PlayRecordCallback callbackData)
{
byte[] dataArray = null;
if (data != IntPtr.Zero)
{
// Copy the unmanaged record to a managed byte buffer
// that can be used by PlayRecord.
dataArray = new byte[dataSize];
Marshal.Copy(data, dataArray, 0, dataSize);
}
metafile1.PlayRecord(recordType, flags, dataSize, dataArray);
return true;
}
static void Main()
{
Application.Run(new Form1());
}
}
Imports System.Drawing
Imports System.Drawing.Imaging
Imports System.Windows.Forms
' for Marshal.Copy
Imports System.Runtime.InteropServices
Public Class Form1
Inherits Form
Private metafile1 As Metafile
Private metafileDelegate As Graphics.EnumerateMetafileProc
Private destPoint As Point
Public Sub New()
metafile1 = New Metafile("C:\test.wmf")
metafileDelegate = New Graphics.EnumerateMetafileProc(AddressOf MetafileCallback)
destPoint = New Point(20, 10)
End Sub
Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
e.Graphics.EnumerateMetafile(metafile1, destPoint, metafileDelegate)
End Sub
Private Function MetafileCallback(ByVal recordType As _
EmfPlusRecordType, ByVal flags As Integer, ByVal dataSize As Integer, _
ByVal data As IntPtr, ByVal callbackData As PlayRecordCallback) As Boolean
Dim dataArray As Byte() = Nothing
If data <> IntPtr.Zero Then
' Copy the unmanaged record to a managed byte buffer
' that can be used by PlayRecord.
dataArray = New Byte(dataSize) {}
Marshal.Copy(data, dataArray, 0, dataSize)
End If
metafile1.PlayRecord(recordType, flags, dataSize, dataArray)
Return True
End Function
Shared Sub Main()
Application.Run(New Form1())
End Sub
End Class
설명
이 메서드는 지정된 메타파일에 포함된 레코드를 열거합니다. 각 레코드는 callback
매개 변수로 지정된 콜백 메서드로 개별적으로 전송됩니다. 일반적으로 콜백 메서드는 레코드를 "재생"하거나 그리기 위해 PlayRecord 메서드를 호출합니다.
콜백 메서드가 PlayRecord호출하는 경우 열거 중인 특정 MetafilePlayRecord 메서드를 호출하여 호출해야 합니다.
추가 정보
- 이미지, 비트맵 및 메타파일
적용 대상
.NET