-
If I want to assign text to some cell in a FlexiGrid, I do this:
grid.row=2
grid.col=4
grid.text="string data"
But, is there any way to do it the same without select the specific cell. When I want to set the cellwith I can do it with: grid.ColWidth(4). I think must be something like this to set data to the cell.
-
I'm not sure if this is what you are looking for
grid.TextMatrix(iRow,iCol) = "String Data"
if you are trying to set a whole column to the same text you could loop down using the line above within a for loop
-
I really thank you a lot. This is exactly what I was needing.