CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
metafile_type.h
1
2#ifndef _metafile_type_h_
3#define _metafile_type_h_
4
5#include "system/enum.h"
6
7namespace System { namespace Drawing { namespace Imaging {
9 enum class MetafileType {
11 Invalid,
13 Wmf,
17 Emf,
22 };
23}}}
24
27template<>
28struct EnumMetaInfo<System::Drawing::Imaging::MetafileType>
29{
32 static ASPOSECPP_SHARED_API const std::array<std::pair<System::Drawing::Imaging::MetafileType, const char_t*>, 6>& values();
33};
34
35#endif
MetafileType
Represents a type of a graphic metafile.
Definition: metafile_type.h:9
@ WmfPlaceable
Placeable Metafile format.
@ EmfPlusOnly
Windows enhanced metafile plus. Contains GDI+ commands. Metafiles of this type are refered to as an E...
@ EmfPlusDual
Dual Windows enhanced metafile. Contains equivalent GDI and GDI+ commands. Metafiles of this type are...
Definition: db_command.h:9