You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Gets the loaded child items in this collection. */
66130
66130
readonly items: Excel.Note[];
66131
66131
/**
66132
-
* Adds a new note to the collection.
66132
+
* Adds a new note with the given content on the given cell.
66133
66133
*
66134
66134
* @remarks
66135
66135
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
66136
66136
* @beta
66137
66137
*
66138
-
* @param cellAddress
66139
-
* @param content
66140
-
* @returns
66138
+
* @param cellAddress The cell to which the note is added. This can be a `Range` object or a string such as "A1". If the string is invalid, or the range is not a single cell, an `InvalidCellAddress` error is thrown.
66139
+
* @param content The text of the note.
66141
66140
*/
66142
66141
add(cellAddress: Range | string, content: any): Excel.Note;
66143
66142
/**
@@ -66146,7 +66145,6 @@ declare namespace Excel {
66146
66145
* @remarks
66147
66146
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
66148
66147
* @beta
66149
-
* @returns
66150
66148
*/
66151
66149
getCount(): OfficeExtension.ClientResult<number>;
66152
66150
/**
@@ -66156,8 +66154,7 @@ declare namespace Excel {
66156
66154
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
66157
66155
* @beta
66158
66156
*
66159
-
* @param index
66160
-
* @returns
66157
+
* @param index The index value of the note to be retrieved. Zero-indexed.
0 commit comments