Note#

class Note(impl)#
property api#

Returns the native object (pywin32 or appscript obj) of the engine being used.

New in version 0.24.2.

delete()#

Delete the note.

New in version 0.24.2.

property text#

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

Examples#

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

New in version 0.24.2.