PDFTool 7.0
PtlFormFieldValue.h
1
2// PtlFormFieldValue.h
3// Copyright (C) 2019 Antenna House,Inc.
4// All rights reserved.
6#ifndef PDFTK_PTLFORMFIELDVALUE_H_
7#define PDFTK_PTLFORMFIELDVALUE_H_
8
9#include "PdfTkBase.h"
10
11namespace PdfTk {
12
13class PtlParamString;
14
18
19class PDFTK_API PtlFormFieldValue
20{
21private:
22 int m_dataFormFieldValue;
23public:
24 int getHandle() const;
25
26public:
32
40
45
46public:
53
54public:
60
66};
67
68}
69
70#endif
PtlFormFieldValue & operator=(const PtlFormFieldValue &obj)
コピーオペレータ alias copy
PtlFormFieldValue()
コンストラクタ
PtlFormFieldValue(const PtlFormFieldValue &obj)
コピーコンストラクタ alias copy
‾PtlFormFieldValue()
デストラクタ
PtlParamString getValue() const
フォームフィールドの値を取得。
PtlParamString getFieldName() const
フォームフィールド名を取得。
文字列を扱うクラスです。
Definition PtlParamString.h:27