Name#
- class Name(impl)#
一个name对象是names集合中的一员:
>>> import xlwings as xw >>> sht = xw.books['Book1'].sheets[0] >>> sht.names[0] # or sht.names['MyName'] <Name 'MyName': =Sheet1!$A$3>
在 0.9.0 版本加入.
- property api#
返回正在使用的引擎的原生对象(
pywin32
或appscript
对象)。在 0.9.0 版本加入.
- delete()#
删除名称。
在 0.9.0 版本加入.
- property name#
返回或者设置命名对象的名称。
在 0.9.0 版本加入.
- property refers_to#
返回或者设置名称引用的公式,公式以等号开头,采用
A1表示法
。在 0.9.0 版本加入.
- property refers_to_range#
返回命名对象引用的区域对象。
在 0.9.0 版本加入.