Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Workbook Class / OpenExcel Method / OpenExcel(Stream,ExcelOpenFlags,String) Method
The stream that contains an Excel Compound Document File.
The open flags.
The password for the file.


In This Topic
    OpenExcel(Stream,ExcelOpenFlags,String) Method
    In This Topic
    Opens an Excel Compound Document File and loads it into GcSpreadSheet.
    Syntax
    'Declaration
     
    Public Overloads Sub OpenExcel( _
       ByVal stream As Stream, _
       ByVal openFlags As ExcelOpenFlags, _
       ByVal password As String _
    ) 
    'Usage
     
    Dim instance As Workbook
    Dim stream As Stream
    Dim openFlags As ExcelOpenFlags
    Dim password As String
     
    instance.OpenExcel(stream, openFlags, password)
    public void OpenExcel( 
       Stream stream,
       ExcelOpenFlags openFlags,
       string password
    )

    Parameters

    stream
    The stream that contains an Excel Compound Document File.
    openFlags
    The open flags.
    password
    The password for the file.
    Remarks
    For performance considerations, this method suspends all events during the file load.
    See Also