In Excel, a table can be resized by dragging its lower-right corner, which makes a table bigger (or smaller) without inserting (or removing) any cells in the worksheet (see “Sizing handle” in Microsoft’s “Overview of Excel tables”). The equivalent action can be done through the VBA API using “ListObject.resize”: “The Resize method allows a ListObject object to be resized over a new range. No cells are inserted or moved.”
How can this be done through the JavaScript API? I’m probably overlooking the obvious, but the class “Table” at least doesn’t seem to offer a method “resize”.