Retrieves extended information about a page with the specified index.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public bool GetPageInfo(
	int pageIndex,
	out int itemIndex,
	out int itemPageIndex,
	out int pageNo
)
Visual Basic
Public Function GetPageInfo ( _
	pageIndex As Integer, _
	<OutAttribute> ByRef itemIndex As Integer, _
	<OutAttribute> ByRef itemPageIndex As Integer, _
	<OutAttribute> ByRef pageNo As Integer _
) As Boolean

Parameters

pageIndex
Type: System..::..Int32
The 0-based index of the target page.
itemIndex
Type: System..::..Int32%
OUT: 0-based index of the document item (C1MultiDocumentItem) that contains the target page.
itemPageIndex
Type: System..::..Int32%
OUT: 0-based index of the target page within the document item that contains it (indicated by itemIndex).
pageNo
Type: System..::..Int32%
OUT: The logical page number within the current document.

Return Value

true if pageIndex is valid, false otherwise.

See Also