cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

GetCell method error, how can I avoid it?

0 Likes
1,757

Hi, I want to get the text of cell from a table.

When I try to GetCell(2,0), and error happended. I know this cell is read-only and cannot even be focused.

But I don't know which cells are read-only.

So, can you give me some suggestions?

Any suggestions would be appreciated 🙂

View Entire Topic
0 Likes

I mean how to avoid this error in a loop.

```python

for i in range(10):

cell = table.GetCell(i, 0)

# I dont know which cell can be get...

```