Antenna House PDF Tool API (C++) 8.0
PtlDest.h
1
2// PtlDest.h
3// Copyright (C) 2013-2018 Antenna House,Inc.
4// All rights reserved.
6#ifndef PDFTK_PTLDEST_H_
7#define PDFTK_PTLDEST_H_
8
9#include "PdfTkBase.h"
10
11namespace PdfTk {
12
22class PDFTK_API PtlDest
23{
24public:
39
40private:
41 int m_dataDest;
42public:
43 int getHandle() const;
44
45public:
53
60 PtlDest(const PtlDest& obj);
61
65 virtual ~PtlDest();
66
67public:
74
75public:
82
83public:
91 int getPageNumber() const;
92
100 void setPageNumber(int page);
101
102public:
108 bool isLeftNull() const;
109
118 float getLeft() const;
119
127 void setLeft(float value);
128
135
136public:
142 bool isBottomNull() const;
143
152 float getBottom() const;
153
161 void setBottom(float value);
162
169
170public:
176 bool isRightNull() const;
177
186 float getRight() const;
187
195 void setRight(float value);
196
203
204public:
210 bool isTopNull() const;
211
220 float getTop() const;
221
229 void setTop(float value);
230
237
238public:
244 bool isZoomNull() const;
245
253 float getZoom() const;
254
260 void setZoom(float value);
261
268};
269
270} // namespace PdfTk
271
272#endif // PDFTK_PTLDEST_H_
void setLeft(float value)
leftに数値を設定。
float getTop() const
topの取得。
float getBottom() const
bottomを取得。
void setZoomNull()
zoomにnullを設定。
void setTop(float value)
topに数値を設定。
bool isLeftNull() const
leftがnullかどうかをチェック。
float getZoom() const
zoomを取得。
float getLeft() const
leftを取得。
void setTopNull()
topにnullの設定。
DEST_TYPE getType() const
宛先タイプを取得。
PtlDest(const PtlDest &obj)
コピーコンストラクタ
void setRightNull()
rightにnullを設定。
int getPageNumber() const
宛先ページを取得。
PtlDest(DEST_TYPE type)
コンストラクタ
void setZoom(float value)
zoomを設定。
void setRight(float value)
rightに数値を設定。
bool isRightNull() const
rightがnullかどうかをチェック。
bool isTopNull() const
topがnullかどうかをチェック。
void setPageNumber(int page)
宛先ページを設定。
void setBottomNull()
bottomにnullを設定。
PtlDest & operator=(const PtlDest &obj)
コピーオペレータ
bool isZoomNull() const
zoomがnullかどうかをチェック。
void setBottom(float value)
bottomに数値を設定。
void setLeftNull()
leftにnullを設定。
bool isBottomNull() const
bottomがnullかどうかをチェック。
float getRight() const
rightを取得。
virtual ~PtlDest()
デストラクタ