Note#

class Note(impl)#
property api#

使用しているエンジンのネイティブ オブジェクト(pywin32 オブジェクトまたは appscript オブジェクト)を返します。

バージョン 0.24.2 で追加.

delete()#

Delete the note.

バージョン 0.24.2 で追加.

property text#

Gets or sets the text of a note. Keep in mind that the note must already exist!

#

>>> sheet = xw.Book(...).sheets[0]
>>> sheet['A1'].note.text = 'mynote'
>>> sheet['A1'].note.text
>>> 'mynote'

バージョン 0.24.2 で追加.