How to align a column to center in a DataGrid?

Hi,
The following code is to add a first column in a DataGrid table. How to align this column as center using code?
var COL_SLNO:DataGridColumn = new DataGridColumn(“SL_NO”);
myGrid.addColumn(COL_SLNO);
COL_SLNO.width=40

Thanks.