C# - DataGridViewn header column alignment

IIRC a column has a HeaderCell property - can't you do something like...
C#:
dataGridView1.Columns[1].HeaderCell.Style //access it's properties from here

That may not be exact as I don't have .Net 2005 handy at the moment but it does ring a bell.
 
Back
Top