PDFTool.NET 7.0
NetRect.h
1
10#ifndef PDFTK_NET_PTLRECT_H_
11#define PDFTK_NET_PTLRECT_H_
12
13#include <PdfTkNet/NetTk.h>
14
15namespace PdfTkNet {
16
22
23public ref class PtlRect : public System::IDisposable
24{
25protected:
26 PdfTk::PtlRect* m_native;
27public:
28 PdfTk::PtlRect* getNative() { return m_native; };
29
30public:
36
47 PtlRect(float left, float bottom, float right, float top);
48
55
60
65
66public:
72
73public:
81 float getLeft();
82
90 void setLeft(float left);
91
99 float getBottom();
100
108 void setBottom(float bottom);
109
117 float getRight();
118
126 void setRight(float right);
127
135 float getTop();
136
144 void setTop(float top);
145};
146
147} // namespace PdfTkNet
148
149#endif // PDFTK_NET_PTLRECT_H_
void setRight(float right)
座標を設定:右
float getRight()
座標を取得:右
float getLeft()
座標を取得:左
PtlRect()
コンストラクタ
‾PtlRect()
デストラクタ
float getBottom()
座標を取得:下
PtlRect(float left, float bottom, float right, float top)
コンストラクタ
PtlRect(PtlRect^ obj)
コピーコンストラクタ
PtlRect operator=(PtlRect^ obj)
コピーオペレータ
float getTop()
座標を取得:上
void setBottom(float bottom)
座標を設定:下
void setTop(float top)
座標を設定:上
void setLeft(float left)
座標を設定:左