Note¶ class Note(impl: Any)¶ property api: Any¶ 使用しているエンジンのネイティブ オブジェクト(pywin32 オブジェクトまたは appscript オブジェクト)を返します。 Added in version 0.24.2. delete() → None¶ Delete the note. Added in version 0.24.2. property text: str¶ 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' Added in version 0.24.2.