Let me know if this is the wrong way to submit feature-request support. I
don't find an issue tracker for this product.
I really need to be able to insert rows at a specific location within a
spreadsheet. My ideal APIs would look something like this (Python)
def insert_row(rowNum, rowData):
"""
rowNum - Int - Where the new row will be inserted
rowData - List - A list of cell data for this row
This method will insert a new row at rowNum and populate it with
rowData. Any row with oldRowNum >= rowNum will now have rowNum == oldRowNum
+ 1.
"""
def insert_rows(rowNum, rowsData)
"""
rowNum - Int - Where the new rows will be inserted
rowsData - List - A list of rowData lists
This method inserts multiple rows, equal to len(rowsData), at rowNum.
"""
Equivalent insert_column() and insert_columns() methods would also be
appreciated.
Thanks in advance!
--
You received this message because you are subscribed to the Google Groups
"Google Spreadsheets API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.