PDFTool.NET 7.0
NetCustomProperties.h
1
10#ifndef PDFTK_NET_PTLCUSTOMPROPERTIES_H_
11#define PDFTK_NET_PTLCUSTOMPROPERTIES_H_
12
13#include <PdfTkNet/NetTk.h>
14
15namespace PdfTkNet {
16
17ref class PtlCustomProperty;
18
22
23public ref class PtlCustomProperties : public System::IDisposable
24{
25protected:
26 PdfTk::PtlCustomProperties* m_native;
27public:
28 PdfTk::PtlCustomProperties* getNative() { return m_native; };
29
30public:
36
44
49
54
55public:
62
63public:
69 bool isEmpty();
70
76 int getCount();
77
78public:
89
97 void append(PtlCustomProperty^ custProp);
98
107 void remove(int index);
108
113 void removeAll();
114};
115
116} // namespace PdfTkNet
117
118#endif // PDFTK_NET_PTLCUSTOMPROPERTIES_H_
PtlCustomProperties()
コンストラクタ
PtlCustomProperties operator=(PtlCustomProperties^ obj)
コピーオペレータ alias copy
‾PtlCustomProperties()
デストラクタ
PtlCustomProperty get(int index)
カスタムプロパティを取得。
void append(PtlCustomProperty^ custProp)
カスタムプロパティを追加。
int getCount()
カスタムプロパティ数を取得。
bool isEmpty()
空かどうかを取得。
void removeAll()
カスタムプロパティを全て削除。
PtlCustomProperties(PtlCustomProperties^ obj)
コピーコンストラクタ alias copy
void remove(int index)
カスタムプロパティを削除。
カスタムプロパティを表現するクラスです。
Definition NetCustomProperty.h:22