Aspose::Pdf::PageCollection::Add method

PageCollection::Add() method

Adds empty page.

System::SharedPtr<Page> Aspose::Pdf::PageCollection::Add()

ReturnValue

Added page.

See Also

PageCollection::Add(const System::ArrayPtr<System::SharedPtr<Page>>&) method

Adds to collection all pages from array.

void Aspose::Pdf::PageCollection::Add(const System::ArrayPtr<System::SharedPtr<Page>> &pages)
ParameterTypeDescription
pagesconst System::ArrayPtr<System::SharedPtr<Page>>&Array of pages which will be added.

See Also

PageCollection::Add(const System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Page>>>&) method

Adds to collection all pages from list.

void Aspose::Pdf::PageCollection::Add(const System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Page>>> &pages)
ParameterTypeDescription
pagesconst System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Page>>>&List which contains all pages which must be added.

See Also