Sheets¶
- class Sheets(impl)¶
A collection of all
sheetobjects:>>> import xlwings as xw >>> xw.sheets # active book Sheets([<Sheet [Book1]Sheet1>, <Sheet [Book1]Sheet2>]) >>> xw.Book('Book1').sheets # specific book Sheets([<Sheet [Book1]Sheet1>, <Sheet [Book1]Sheet2>])
在 0.9.0 版被加入.
- add(name=None, before=None, after=None)¶
Creates a new Sheet and makes it the active sheet.
- 參數:
- 回傳:
Added sheet object
- 回傳型別:
- async get_active()¶
Returns the active Sheet, fetched live from Excel.
Requires xlwings Lite.
在 0.35.0 版被加入.