Applying to row colour to a dbadvgrid

Hello,

I have DBAdvGrid which is loaded from a Query.

I am now using a Dataset to loop through the results like so

DBAdvGrid.DataSource.DataSet.DisableControls;
DBAdvGrid.DataSource.DataSet.First;
while not DBAdvGrid.DataSource.DataSet.EOF do
begin
   ...........

As I scroll through each row I have a True/False function
If my result is True, I then want to highlight the Row in Green.

How do I do this using a DBAdvGrid which is really only visual representation of a dataset

Many thanks

Recommended way is using the event OnGetCellColor.
This is demonstrated in the demo Demo\DBAdvGrid\ADOSelColor