Nevron Open Vision Documentation
Nevron.Nov.Formats.Excel Namespace / NExcelReader Class / ReadAll Method / ReadAll(Stream,Boolean) Method
The System.IO.Stream from which to read the Excel data.
Indicates whether the first row of each table contains column names.


In This Topic
    ReadAll(Stream,Boolean) Method
    In This Topic
    Reads all data from the provided stream.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function ReadAll( _
       ByVal stream As System.IO.Stream, _
       ByVal headerRow As System.Boolean _
    ) As NDataSet
    'Usage
     
    
    Dim stream As System.IO.Stream
    Dim headerRow As System.Boolean
    Dim value As NDataSet
     
    value = NExcelReader.ReadAll(stream, headerRow)
    public static NDataSet ReadAll( 
       System.IO.Stream stream,
       System.bool headerRow
    )

    Parameters

    stream
    The System.IO.Stream from which to read the Excel data.
    headerRow
    Indicates whether the first row of each table contains column names.

    Return Value

    An Nevron.Nov.Data.NDataSet with a table for each Excel sheet.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also