Metafile.GetMetafileHeader Method

Definition

Returns the MetafileHeader associated with this Metafile.

Overloads

GetMetafileHeader(IntPtr, WmfPlaceableFileHeader)

Returns the MetafileHeader associated with the specified Metafile.

GetMetafileHeader()

Returns the MetafileHeader associated with this Metafile.

GetMetafileHeader(IntPtr)

Returns the MetafileHeader associated with the specified Metafile.

GetMetafileHeader(Stream)

Returns the MetafileHeader associated with the specified Metafile.

GetMetafileHeader(String)

Returns the MetafileHeader associated with the specified Metafile.

GetMetafileHeader(IntPtr, WmfPlaceableFileHeader)

Source:
Metafile.cs
Source:
Metafile.cs
Source:
Metafile.cs

Returns the MetafileHeader associated with the specified Metafile.

public:
 static System::Drawing::Imaging::MetafileHeader ^ GetMetafileHeader(IntPtr hmetafile, System::Drawing::Imaging::WmfPlaceableFileHeader ^ wmfHeader);
public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader (IntPtr hmetafile, System.Drawing.Imaging.WmfPlaceableFileHeader wmfHeader);
static member GetMetafileHeader : nativeint * System.Drawing.Imaging.WmfPlaceableFileHeader -> System.Drawing.Imaging.MetafileHeader
Public Shared Function GetMetafileHeader (hmetafile As IntPtr, wmfHeader As WmfPlaceableFileHeader) As MetafileHeader

Parameters

hmetafile
IntPtr

nativeint

The handle to the Metafile for which to return a header.

Returns

The MetafileHeader associated with the specified Metafile.

Applies to

GetMetafileHeader()

Source:
Metafile.cs
Source:
Metafile.cs
Source:
Metafile.cs

Returns the MetafileHeader associated with this Metafile.

public:
 System::Drawing::Imaging::MetafileHeader ^ GetMetafileHeader();
public System.Drawing.Imaging.MetafileHeader GetMetafileHeader ();
member this.GetMetafileHeader : unit -> System.Drawing.Imaging.MetafileHeader
Public Function GetMetafileHeader () As MetafileHeader

Returns

The MetafileHeader associated with this Metafile.

Applies to

GetMetafileHeader(IntPtr)

Source:
Metafile.cs
Source:
Metafile.cs
Source:
Metafile.cs

Returns the MetafileHeader associated with the specified Metafile.

public:
 static System::Drawing::Imaging::MetafileHeader ^ GetMetafileHeader(IntPtr henhmetafile);
public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader (IntPtr henhmetafile);
static member GetMetafileHeader : nativeint -> System.Drawing.Imaging.MetafileHeader
Public Shared Function GetMetafileHeader (henhmetafile As IntPtr) As MetafileHeader

Parameters

henhmetafile
IntPtr

nativeint

The handle to the enhanced Metafile for which a header is returned.

Returns

The MetafileHeader associated with the specified Metafile.

Applies to

GetMetafileHeader(Stream)

Source:
Metafile.cs
Source:
Metafile.cs
Source:
Metafile.cs

Returns the MetafileHeader associated with the specified Metafile.

public:
 static System::Drawing::Imaging::MetafileHeader ^ GetMetafileHeader(System::IO::Stream ^ stream);
public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader (System.IO.Stream stream);
static member GetMetafileHeader : System.IO.Stream -> System.Drawing.Imaging.MetafileHeader
Public Shared Function GetMetafileHeader (stream As Stream) As MetafileHeader

Parameters

stream
Stream

A Stream containing the Metafile for which a header is retrieved.

Returns

The MetafileHeader associated with the specified Metafile.

Applies to

GetMetafileHeader(String)

Source:
Metafile.cs
Source:
Metafile.cs
Source:
Metafile.cs

Returns the MetafileHeader associated with the specified Metafile.

public:
 static System::Drawing::Imaging::MetafileHeader ^ GetMetafileHeader(System::String ^ fileName);
public static System.Drawing.Imaging.MetafileHeader GetMetafileHeader (string fileName);
static member GetMetafileHeader : string -> System.Drawing.Imaging.MetafileHeader
Public Shared Function GetMetafileHeader (fileName As String) As MetafileHeader

Parameters

fileName
String

A String containing the name of the Metafile for which a header is retrieved.

Returns

The MetafileHeader associated with the specified Metafile.

Applies to