Flash Player 6 (6.0.79.0).
Flash MX Professional 2004.
new DataGridColumn(name)
name A string that indicates the name of the DataGridColumn object. This parameter is the field of each item to display.
Nothing.
Constructor; creates a DataGridColumn object. Use this constructor to create columns to add to a DataGrid component. After you create the DataGridColumn objects, you can add them to a data grid by calling DataGrid.addColumn().
The following example creates a DataGridColumn object called Location:
import mx.controls.gridclasses.DataGridColumn;
var column = new DataGridColumn("Location");