private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
int col = this.gridDataBoundGrid1.Binder.NameToColIndex("Col2");
if(e.ColIndex == col && e.RowIndex == 2)
{
e.Style.Font.Bold = true;
}
}