[]
How many rows were imported to the specified location.
public int RowsImported { get; }
Public ReadOnly Property RowsImported As Integer
object[,] values = { { "Name", "Score" }, { "Alice", 100 } };
DataImportResult result = worksheet.Range["A1"].ImportData(values);
int rowsImported = result.RowsImported;