TMSFMXGrid questions

Hi to all,
I'm new to this forum and I'm starting to use the grid.
I have some question for you:
1) When I select a row in which way I can have a cell value (i.e. I select the row 10 and I wanna the 4th column value)?
2) How can I hide a grid column (I cannot find the visible property)?

thank's
Omar

Hi, 


You Can get the value by accessing the cells property:

TMSFMXGrid1.Cells[4, 10]

You can hide a column with

TMSFMGrid1.HideColumn(10);

Kind Regards, 
Pieter

thank's for the fast hep