Graphics.AddMetafileComment Method (Byte[])
Adds a comment to the current Metafile.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- data
-
Type:
System.Byte[]
Array of bytes that contains the comment.
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler, as well as thisForm, the Form for the example. The code performs the following actions:
Creates a temporary Graphics for creating the metafile and gets an hdc, a handle to its device context.
Creates a new metafile using the hdc.
Creates a Graphics for display of the metafile from the Metafile.
Draws a rectangle to the metafile.
Adds a comment to the metafile.
Disposes the Graphics for the metafile-which closes the metafile.
Disposes the metafile.
Releases the temporary hdc.
Disposes the temporary Graphics.
Creates a second metafile from the previously created file.
Draws the metafile to the screen.
Disposes the metafile.
Available since 1.1