ActiveReports.Viewer3 Request technical support
GetRange Method
See Also 


index
Specifies the starting page index of the range.
count
The number of pages to be returned.
Returns a new collection of the specified number of pages starting with the specified index

Syntax

Visual Basic (Declaration) 
Public Function GetRange( _
   ByVal index As Integer, _
   ByVal count As Integer _
) As PagesCollection
Visual Basic (Usage)Copy Code
Dim instance As PagesCollection
Dim index As Integer
Dim count As Integer
Dim value As PagesCollection
 
value = instance.GetRange(index, count)
C# 
public PagesCollection GetRange( 
   int index,
   int count
)

Parameters

index
Specifies the starting page index of the range.
count
The number of pages to be returned.

Return Value

A collection of pages from the collection starting at the specified index.

See Also