Hi Matt
Thanks for your support.
I tried to do so in the method which you suggested but the InitializeRow event gets fired up by the time the grid loads.
I need to have column which is in the grid that updates to the Fonts choosen from another cell in the same grid.
I tried this event in CellChange
Here comes the following code
ultraGrid.DisplayLayout.Override.EditCellAppearance.ForeColor =
SystemColors.Desktop;
ultraGrid.DisplayLayout.Override.EditCellAppearance.BackColor = System.Drawing.
Color.Black;
After writing this code the ForeColor and BackColor changes for the Active Cell which has focus.
I also tried this too
ultraGrid.Rows[Row].Cells[2].EditorControlResolved.BackColor = System.Drawing.
Color.Black;
ultraGrid.Rows[Row].Cells[2].EditorControl.BackColor = System.Drawing.
Color.Black;
These two lines throws errors like this
Object reference not set to an instance of an object.
Could you please help me
Thanks in advance
Ferdin