Skip to main content

PageList.Last Property

Gets the last page in the PageList collection.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

public Page Last { get; }

Property Value

Type Description
Page

An object of the Page class.

Remarks

The index of the last page is equal to the Count property’s value - 1, so you can also obtain the last page via the PageList.Item property, and pass as the parameter the Count property’s value, decremented by 1.

See Also