Name¶
- class Name(impl)¶
The name object is a member of the
namescollection:>>> import xlwings as xw >>> sht = xw.books['Book1'].sheets[0] >>> sht.names[0] # or sht.names['MyName'] <Name 'MyName': =Sheet1!$A$3>
Added in version 0.9.0.
- property api: Any¶
Returns the native object (
pywin32orappscriptobj) of the engine being used.Added in version 0.9.0.
- delete()¶
名前を削除します。
Added in version 0.9.0.
- property name: str¶
Nameオブジェクトの名前を取得または設定します。
Added in version 0.9.0.
- property refers_to: str¶
名前の参照先を定義する数式を取得または設定します。数式はA1形式でイコールで始まります。
Added in version 0.9.0.