Names¶
- class Names(impl)¶
工作簿中所有名称(
name
)对象的集合:>>> 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)¶
为一个单元格组成的区域定义名称。
参数¶
- namestr
指定作为名称的文字。名称中不能包含空格,也不能是单元格的引用。
- refers_tostr
使用英语,按照
A1表示法
描述名称引用的具体内容
返回¶
Name
Added in version 0.9.0.
- property api¶
Returns the native object (
pywin32
orappscript
obj) of the engine beingused.Added in version 0.9.0.
- property count¶
返回集合中的对象数。