Document Solutions for Excel, .NET Edition | Document Solutions
GrapeCity.Documents.Excel Namespace / Workbook Class / ImportData Method / ImportData(Stream,String,Int32,Int32,Int32,Int32) Method
The fileStream of a workbook.
The name of the worksheet.
The first row of the range.
The first column of the range.
The count of the rows.
The count of the columns.
In This Topic
    ImportData(Stream,String,Int32,Int32,Int32,Int32) Method
    In This Topic
    Import the data of a specified range from a fileStream.
    Syntax
    public static System.object[,] ImportData( 
       System.IO.Stream fileStream,
       System.string worksheetName,
       System.int row,
       System.int column,
       System.int rowCount,
       System.int columnCount
    )

    Parameters

    fileStream
    The fileStream of a workbook.
    worksheetName
    The name of the worksheet.
    row
    The first row of the range.
    column
    The first column of the range.
    rowCount
    The count of the rows.
    columnCount
    The count of the columns.

    Return Value

    An array for the data.
    See Also