CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
metafile_header.h
1
2#ifndef metafile_header_h
3#define metafile_header_h
4
5#include "fwd.h"
6#include "system/object.h"
7#include "drawing/rectangle.h"
8
9namespace System{ namespace Drawing{ namespace Imaging {
14class ASPOSECPP_SHARED_CLASS MetafileHeader : public System::Object
15{
16public:
19 ASPOSECPP_SHARED_API float get_DpiX() const;
22 ASPOSECPP_SHARED_API float get_DpiY() const;
23
25 ASPOSECPP_SHARED_API Rectangle get_Bounds() const;
28 ASPOSECPP_SHARED_API void set_Bounds(const Rectangle& bounds);
29
30private:
32 Rectangle m_bounds;
33};
34
35}}} //namespace System{ namespace Drawing{ namespace Imaging
36
37#endif // metafile_header_h
Contains attributes associated with a graphic metafile. Objects of this class should only be allocate...
Definition: metafile_header.h:15
Rectangle get_Bounds() const
Returns a bounding rectangle of a metafile associated with the current object.
void set_Bounds(const Rectangle &bounds)
Sets a bounding rectangle of a metafile associated with the current object.
float get_DpiX() const
NOT IMPLEMENTED.
float get_DpiY() const
NOT IMPLEMENTED.
Represents a rectangular area of an image defined as integer X and Y coordinates of its upper left co...
Definition: rectangle.h:19
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Definition: db_command.h:9