Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo method

AppearanceDictionary::CopyTo(const System::ArrayPtr<System::SharedPtr<XForm>>&, int32_t) method

Copies the elements of the dictionary to an Array, starting at a particular Array index.

void Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo(const System::ArrayPtr<System::SharedPtr<XForm>> &array, int32_t index)
ParameterTypeDescription
arrayconst System::ArrayPtr<System::SharedPtr<XForm>>&Array where items must be copied.
indexint32_tIndex where items must be copied.

See Also

AppearanceDictionary::CopyTo(System::ArrayPtr<System::Collections::Generic::KeyValuePair<System::String, System::SharedPtr<XForm>>>, int32_t) method

Copies the elements of the ICollection to an Array, starting at a particular Array index.

void Aspose::Pdf::Annotations::AppearanceDictionary::CopyTo(System::ArrayPtr<System::Collections::Generic::KeyValuePair<System::String, System::SharedPtr<XForm>>> array, int32_t arrayIndex) override
ParameterTypeDescription
arraySystem::ArrayPtr<System::Collections::Generic::KeyValuePair<System::String, System::SharedPtr<XForm>>>The one-dimensional Array that is the destination of the elements copied from ICollection. The Array must have zero-based indexing.
arrayIndexint32_tThe zero-based index in array at which copying begins.

Remarks

No bounds checking is performed.

See Also