Aspose::Pdf::Facades::FormEditor::CopyInnerField method
Contents
[
Hide
]FormEditor::CopyInnerField(const System::String&, const System::String&, int32_t) method
Copies an existing field to the same position in specified page number. A new document will be produced, which contains everything the source document has except for the newly copied field.
void Aspose::Pdf::Facades::FormEditor::CopyInnerField(const System::String &fieldName, const System::String &newFieldName, int32_t pageNum)
| Parameter | Type | Description |
|---|---|---|
| fieldName | const System::String& | The old fully qualified field name. |
| newFieldName | const System::String& | The new fully qualified field name. If null, it will be set as fieldName + “~”. |
| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. |
See Also
- Class String
- Class FormEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++
FormEditor::CopyInnerField(const System::String&, const System::String&, int32_t, float, float) method
Copies an existing field to a new position specified by both page number and ordinates. A new document will be produced, which contains everything the source document has except for the newly copied field.
void Aspose::Pdf::Facades::FormEditor::CopyInnerField(const System::String &fieldName, const System::String &newFieldName, int32_t pageNum, float abscissa, float ordinate)
| Parameter | Type | Description |
|---|---|---|
| fieldName | const System::String& | The old fully qualified field name. |
| newFieldName | const System::String& | The new fully qualified field name. If null, it will be set as fieldName + “~”. |
| pageNum | int32_t | The number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted. |
| abscissa | float | The abscissa of the new field. If -1, the abscissa will be equaled to the original one. |
| ordinate | float | The ordinate of the new field. If -1, the ordinate will be equaled to the original one. |
See Also
- Class String
- Class FormEditor
- Namespace Aspose::Pdf::Facades
- Library Aspose.PDF for C++