18 references to MetafileType
System.Drawing.Common (17)
System\Drawing\Imaging\MetafileHeader.cs (11)
53
public bool IsWmf() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeWmf or GdiPlus.
MetafileType
.MetafileTypeWmfPlaceable;
58
public bool IsWmfPlaceable() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeWmfPlaceable;
63
public bool IsEmf() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeEmf;
69
public bool IsEmfOrEmfPlus() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeEmf
70
or GdiPlus.
MetafileType
.MetafileTypeEmfPlusOnly
71
or GdiPlus.
MetafileType
.MetafileTypeEmfPlusDual;
77
public bool IsEmfPlus() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeEmfPlusOnly
78
or GdiPlus.
MetafileType
.MetafileTypeEmfPlusDual;
84
public bool IsEmfPlusDual() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeEmfPlusDual;
90
public bool IsEmfPlusOnly() => _header.Type is GdiPlus.
MetafileType
.MetafileTypeEmfPlusOnly;
System\Drawing\Imaging\MetafileType.cs (6)
14
Invalid = GdiPlus.
MetafileType
.MetafileTypeInvalid,
19
Wmf = GdiPlus.
MetafileType
.MetafileTypeWmf,
24
WmfPlaceable = GdiPlus.
MetafileType
.MetafileTypeWmfPlaceable,
29
Emf = GdiPlus.
MetafileType
.MetafileTypeEmf,
34
EmfPlusOnly = GdiPlus.
MetafileType
.MetafileTypeEmfPlusOnly,
39
EmfPlusDual = GdiPlus.
MetafileType
.MetafileTypeEmfPlusDual
System.Private.Windows.GdiPlus (1)
Windows.Win32.MetafileHeader.g.cs (1)
25
internal winmdroot.Graphics.GdiPlus.
MetafileType
Type;