Code example showing how to loop through all non-binary columns and add them to a table plot.
DataColumnCollection dataColumns = tablePlot.Data.DataTableReference.Columns;
// Loop through all simple columns, that is columns not being binary,
// undefined or of a future complex type.
foreach(DataColumn column in dataColumns.FindAll(
delegate(DataColumn col){ return col.Properties.DataType.IsSimple; }))
{
// Add the column to the table plot.
tablePlot.TableColumns.Add(column);
}