This class represents a traditional Windows Metafile Header. It can
be obtained from the MetafileHeader.WmfHeader
property.
You can determine the HeaderSize in bytes, the
number of objects (NoObjects) in the metafile, the
size of the largest record in the file
(MaxRecord), the Size of the
metafile, the Type of the metafile, and the
Version of the header.
public sealed class MetaHeader {
// Public Constructors
public MetaHeader();
// Public Instance Properties
public short HeaderSize{set; get; }
public int MaxRecord{set; get; }
public short NoObjects{set; get; }
public short NoParameters{set; get; }
public int Size{set; get; }
public short Type{set; get; }
public short Version{set; get; }
}