PDFTool.NET 7.0
NetSize.h
1
10#ifndef PDFTK_NET_PTLSIZE_H_
11#define PDFTK_NET_PTLSIZE_H_
12
13#include <PdfTkNet/NetTk.h>
14
15namespace PdfTkNet {
16
21
22public ref class PtlSize : public System::IDisposable
23{
24protected:
25 PdfTk::PtlSize* m_native;
26public:
27 PdfTk::PtlSize* getNative() { return m_native; };
28
29public:
35
42 PtlSize(float width, float height);
43
50
55
60
61public:
67
68public:
73 float getWidth();
74
79 void setWidth(float width);
80
85 float getHeight();
86
91 void setHeight(float height);
92};
93
94} // namespace PdfTkNet
95
96#endif // PDFTK_NET_PTLSIZE_H_
float getWidth()
幅を取得。
PtlSize()
コンストラクタ
void setHeight(float height)
高さを設定。
PtlSize operator=(PtlSize^ obj)
コピーオペレータ
float getHeight()
高さを取得。
‾PtlSize()
デストラクタ
PtlSize(PtlSize^ obj)
コピーコンストラクタ
PtlSize(float width, float height)
コンストラクタ
void setWidth(float width)
幅を設定。