Table.ImportArray

Table.ImportArray method

Imports one-dimensional array of data into table. Import goes one cell per each array’s item and starts from row and column defined in parameters. During import, if detected that necessary rows are still absent(i.e. target table is too small to absorb all data), necessary rows will be created

public void ImportArray(object[] importedArray, int firstFilledRow, int firstFilledColumn, 
    bool isLeftColumnsFilled)
ParameterTypeDescription
importedArrayObject[]imported data, nulls will be imported as empty strings
firstFilledRowInt32define number of first target row in target table from wich import will start. If amount of rows in target table less then required, missing rows will be created first.
firstFilledColumnInt32specifies number of first target column in target table , column must be present in target table before start of import
isLeftColumnsFilledBooleanIf ‘isLeftColumnsFilled’=false, then in second and all subsequent filled rows cells that are on the left hand from firstFilledColumn will be skipped

See Also