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