SaveAsTiff(String,OutputRange,SaveAsImageOptions) Method
In This Topic
Saves the document pages as images to a file in TIFF format, one page per frame.
Syntax
'Declaration
Public Overloads Sub SaveAsTiff( _
ByVal As String, _
Optional ByVal As GrapeCity.Documents.Common.OutputRange, _
Optional ByVal As GrapeCity.Documents.Pdf.SaveAsImageOptions _
)
'Usage
Dim instance As FlexViewer
Dim fileName As String
Dim pageRange As GrapeCity.Documents.Common.OutputRange
Dim options As GrapeCity.Documents.Pdf.SaveAsImageOptions
instance.SaveAsTiff(fileName, pageRange, options)
public void SaveAsTiff(
string ,
GrapeCity.Documents.Common.OutputRange ,
GrapeCity.Documents.Pdf.SaveAsImageOptions
)
Parameters
- fileName
- The output file path.
- pageRange
- The GrapeCity.Documents.Common.OutputRange object that defines which pages of the document should be saved.
- options
- The GrapeCity.Documents.Pdf.SaveAsImageOptions object.
See Also