[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DataImportResult.RowsImported

RowsImported Property

RowsImported

How many rows were imported to the specified location.

Declaration
public int RowsImported { get; }
Public ReadOnly Property RowsImported As Integer
Examples
object[,] values = { { "Name", "Score" }, { "Alice", 100 } };
DataImportResult result = worksheet.Range["A1"].ImportData(values);
int rowsImported = result.RowsImported;