PDFTool.NET 7.0
NetEmbeddedFile.h
1
10#ifndef PDFTK_NET_PTLEMBEDDEDFILE_H_
11#define PDFTK_NET_PTLEMBEDDEDFILE_H_
12
13#include <PdfTkNet/NetTk.h>
14
15namespace PdfTkNet {
16
17ref class PtlParamInput;
18ref class PtlParamOutput;
19
23
24public ref class PtlEmbeddedFile : public System::IDisposable
25{
26protected:
27 PdfTk::PtlEmbeddedFile* m_native;
28public:
29 PdfTk::PtlEmbeddedFile* getNative() { return m_native; };
30
31public:
37
44
49
54
55public:
62
63public:
69 String^ getFileName();
70
76 void setFileName(String^ filename);
77
78public:
84 void readFile(PtlParamInput^ inParam);
85
91 void writeFile(PtlParamOutput^ outParam);
92};
93
94} // namespace PdfTkNet
95
96#endif // PDFTK_NET_PTLEMBEDDEDFILE_H_
void writeFile(PtlParamOutput^ outParam)
添付ファイルの書き出し。
‾PtlEmbeddedFile()
デストラクタ
PtlEmbeddedFile operator=(PtlEmbeddedFile^ obj)
コピーオペレータ alias copy
String getFileName()
添付ファイル名を取得。
void readFile(PtlParamInput^ inParam)
添付するファイルの読み込み。
void setFileName(String^ filename)
添付ファイル名を設定。
PtlEmbeddedFile()
コンストラクタ
PtlEmbeddedFile(PtlEmbeddedFile^ obj)
コピーコンストラクタ
ファイルやストリームの入力指定に使うパラメータクラスです。 パス(ファイル)名を指定して、ストリームを指定しない場合、パス(ファイル)名を使って、ストリームをオープンします。 ストリームを指定した場...
Definition NetParamInput.h:26
ファイルやストリームの出力指定に使うパラメータクラスです。 パス(ファイル)名を指定して、ストリームを指定しない場合、パス(ファイル)名を 使って、ストリームをオープンします。 ストリームを指定した場合...
Definition NetParamOutput.h:27