I am trying to retrieve the dimensions of columns and rows in my spreadsheet via the gspread python library.
I am able to authenticate API access, and I can access/modify cell values. I am also able to resize rows and columns. However, I do not seem to be able to access the current dimensions of a row or column.
If I use get_effective_format(worksheet, label)
, I can see many properties of a cell such as colour, text formatting, border properties etc, but the response does not containing information about the width or height of the cell.
Can anyone help me figure this out?
Most questions I can find online refer to find the number of rows or column, or to changing the width of a column or height of a row. I am looking for help in simply accessing the current height or width.