Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / OpenExcel Method / OpenExcel(Stream,Int32) Method
Stream containing an Excel Compound Document File
Index of the Excel sheet to load
Example


In This Topic
    OpenExcel(Stream,Int32) Method
    In This Topic
    Opens an Excel file and loads the specified Excel sheet into this sheet.
    Syntax
    'Declaration
     
    
    Public Overloads Function OpenExcel( _
       ByVal stream As Stream, _
       ByVal excelSheetIndex As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim stream As Stream
    Dim excelSheetIndex As Integer
    Dim value As Boolean
     
    value = instance.OpenExcel(stream, excelSheetIndex)
    public bool OpenExcel( 
       Stream stream,
       int excelSheetIndex
    )

    Parameters

    stream
    Stream containing an Excel Compound Document File
    excelSheetIndex
    Index of the Excel sheet to load

    Return Value

    Boolean: true if successful; false otherwise
    Exceptions
    ExceptionDescription
    Specified sheet in Excel is invalid; index must be between 0 and the number of sheets
    Example
    This example uses the OpenExcel method.
    See Also