Aspose::Pdf::Facades::FormEditor::CopyOuterField method

FormEditor::CopyOuterField(System::String, System::String) method

Copies an existing field from one PDF document to another document with original page number and ordinates. Notice: Only for AcroForm fields (excluding radio box).

void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName)
ParameterTypeDescription
srcFileNameSystem::StringThe name of PDF document which containes the field to be copied.
fieldNameSystem::StringThe original fully qualified field name.

See Also

FormEditor::CopyOuterField(System::String, System::String, int32_t) method

Copies an existing field from one PDF document to another document with specified page number and original ordinates. Notice: Only for AcroForm fields (excluding radio box).

void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName, int32_t pageNum)
ParameterTypeDescription
srcFileNameSystem::StringThe name of PDF document which containes the field to be copied.
fieldNameSystem::StringThe original fully qualified field name.
pageNumint32_tThe 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

FormEditor::CopyOuterField(System::String, System::String, int32_t, float, float) method

Copies an existing field from one PDF document to another document with specified page number and ordinates. Notice: Only for AcroForm fields (excluding radio box).

void Aspose::Pdf::Facades::FormEditor::CopyOuterField(System::String srcFileName, System::String fieldName, int32_t pageNum, float abscissa, float ordinate)
ParameterTypeDescription
srcFileNameSystem::StringThe name of PDF document which containes the field to be copied.
fieldNameSystem::StringThe original fully qualified field name.
pageNumint32_tThe number of page to hold the new field. If -1, new field will be copid to the same page as old one hosted.
abscissafloatThe abscissa of the new field. If -1, the abscissa will be equaled to the original one.
ordinatefloatThe ordinate of the new field. If -1, the ordinate will be equaled to the original one.

See Also