(self, tbl: CT_Table, graphic_frame: GraphicFrame)
| 27 | """ |
| 28 | |
| 29 | def __init__(self, tbl: CT_Table, graphic_frame: GraphicFrame): |
| 30 | super(Table, self).__init__() |
| 31 | self._tbl = tbl |
| 32 | self._graphic_frame = graphic_frame |
| 33 | |
| 34 | def cell(self, row_idx: int, col_idx: int) -> _Cell: |
| 35 | """Return cell at `row_idx`, `col_idx`. |