ActiveReports.PdfExport Request technical support
Export(Document,Stream,String) Method
See Also 


document
The ActiveReports object to export.
stream
The System.IO.Stream to which to save the PDF.
pageRange
A range of page numbers. Ranges are indicated by the use of a hyphen between the starting and ending page numbers in the range. Single pages may also be included. Each range or single page is separated by a comma.
Exports a range of pages from the specified document to a PDF stream.

Syntax

Visual Basic (Declaration) 
Overloads Public Sub Export( _
   ByVal document As Document, _
   ByVal stream As Stream, _
   ByVal pageRange As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As PdfExport
Dim document As Document
Dim stream As Stream
Dim pageRange As String
 
instance.Export(document, stream, pageRange)
C# 
public void Export( 
   Document document,
   Stream stream,
   string pageRange
)

Parameters

document
The ActiveReports object to export.
stream
The System.IO.Stream to which to save the PDF.
pageRange
A range of page numbers. Ranges are indicated by the use of a hyphen between the starting and ending page numbers in the range. Single pages may also be included. Each range or single page is separated by a comma.

See Also