RowColors Property

Hi

This property is considered as a readonly property. However it could be useful to test the color of a row :

   IF (list_Donnee.rowcolor = $00BBBBFF)  THEN
  BEGIN
                                           IF Odd(Ligne) THEN
                                               list_Donnee.rowcolor := list_Donnee.Bands.PrimaryColor
                                          ELSE                                              
                                                list_Donnee.rowcolor := list_Donnee.Bands.SecondaryColor;
 END; // Fin de IF

Is it possible that this property become a read/write one ?
regards
Olivier

It is unclear where you get grid.RowColor, it is not available this way. The correct definition is grid.RowColor[index]: TColor which is a read/write property to set the color of a row.