Assuming I have an IGrid
how do I access a specific cell and change the text inside .
I want to create an empty grid with all the rows and columns and a different function will receive the IGrid pointer and fill in the text for each cell
How do I do this . I couldnt find anything in IGrid to help me access an existing cell.
Thanks.
I don't think that there is a way to do this; in general the report is designed to be built as you go, so you would need to store the references to the rows yourself as you add them (and possibly the cells).
-Matt
Hi Matt
Ok . Ill manage although It would have been better if there was such supported functionality .