No tabstop in read only cells (TAdvStringGrid)

Hi,


In my TAdvStringGrid, I have a "totals" row and column (right-most col and bottom-most row) that I set as ReadOnly using this code:

grdBedCount.ReadOnly[totalColumnIndex, Pred(grdBedCount.RowCount)] := TRUE;

Is there any way to prevent the user from tabbing into the cells that are readonly?  (I can see skipDisabled and skipFixed)


Thanks

Stuart
stuartclennett@gmail.com


Using this on a default grid disallows to tab into column 4 for example:

Thanks Bruno :)