PageCollection.Add

Add(Page)

Adds page to collection.

public Page Add(Page entity)
ParameterTypeDescription
entityPagePage which should be added.

Return Value

Added page.

See Also


Add()

Adds an empty page. If the document already contains pages with varying sizes, the size of the most frequently occurring page will be selected. In the case there are only two different pages, the size of the first page will be used.

public Page Add()

Return Value

Added page.

See Also


Add(ICollection<Page>)

Adds to collection all pages from list.

public void Add(ICollection<Page> pages)
ParameterTypeDescription
pagesICollection`1List which contains all pages which must be added.

See Also


Add(Page[])

Adds to collection all pages from array.

public void Add(Page[] pages)
ParameterTypeDescription
pagesPage[]Array of pages which will be added.

See Also