Do you mean the data type for column 'size'?
tblProducts.Columns["size"].DataType
Also! Columns is a collection of the columns (surprisingly) and has nothing to do with the number of rows!!!
If you want to iterate over the columns use a loop like this:
For Each column In tblProducts.Columns
Next