Thanks Clay.
Since I may be resizing the row, I guess it would make more sense to do it on the CellsChanging event, since the row size change would start the whole event process over, correct?
>Any time a style changes, the events CellsChanging, SaveCellInfo, and CellsChanged are raised.
>
>You would have to identify when a style.Font was changed in one of these events. Here is a snippet that does it in SaveCellInfo.
>
>
>private void gridControl1_SaveCellInfo(object sender, GridSaveCellInfoEventArgs e)
>{
> if(e.Style.Store.IsValueModified(GridStyleInfoStore.FontProperty))
> {
> Console.WriteLine("Font changed");
> }
>}
>