Names¶
- class Names(impl)¶
A collection of all
nameobjects in the workbook:>>> import xlwings as xw >>> book = xw.books['Book1'] # book scope and sheet scope >>> book.names [<Name 'MyName': =Sheet1!$A$3>] >>> book.sheets[0].names # sheet scope only
Added in version 0.9.0.
- add(name, refers_to)¶
Defines a new name for a range of cells.
- Parameters:
name (str) – Specifies the text to use as the name. Names cannot include spaces and cannot be formatted as cell references.
refers_to (str) – Describes what the name refers to, in English, using A1-style notation.
Added in version 0.9.0.
- property api: Any¶
Returns the native object (
pywin32orappscriptobj) of the engine beingused.Added in version 0.9.0.
- property count: int¶
Returns the number of objects in the collection.