13 references to MetafileType
System.Drawing (1)
System.Drawing.cs (1)
95[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Imaging.MetafileType))]
System.Drawing.Common (5)
System\Drawing\Imaging\EmfType.cs (3)
14EmfOnly = MetafileType.Emf, 19EmfPlusOnly = MetafileType.EmfPlusOnly, 25EmfPlusDual = MetafileType.EmfPlusDual
System\Drawing\Imaging\MetafileHeader.cs (2)
23public MetafileType Type => (MetafileType)_header.Type;
System.Drawing.Common.Tests (7)
mono\System.Imaging\MetafileTest.cs (5)
63Assert.Equal(MetafileType.WmfPlaceable, header.Type); 138Assert.Equal(MetafileType.Emf, header.Type); 199Assert.Equal(MetafileType.Emf, mh.Type); 202Assert.Equal(MetafileType.EmfPlusDual, mh.Type); 205Assert.Equal(MetafileType.EmfPlusOnly, mh.Type);
System\Drawing\Imaging\MetafileTests.cs (2)
993Assert.Equal(MetafileType.WmfPlaceable, header.Type); 1017Assert.Equal((int)MetafileType.Wmf, header.WmfHeader.Type);