Excel.Interfaces.NoteLoadOptions interface
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents a note in the workbook or worksheet.
Remarks
[ API set: ExcelApi BETA (PREVIEW ONLY) ]
Properties
$all | Specifying |
author |
Gets the author of the note. |
content | Gets or sets the text of the note. The string must be fewer than 256 characters. |
height | Specifies the height of the note. |
visible | Specifies the visibility of the note. A value of |
width | Specifies the width of the note. |
Property Details
$all
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
authorName
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets the author of the note.
authorName?: boolean;
Property Value
boolean
Remarks
content
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Gets or sets the text of the note. The string must be fewer than 256 characters.
content?: boolean;
Property Value
boolean
Remarks
height
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the height of the note.
height?: boolean;
Property Value
boolean
Remarks
visible
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the visibility of the note. A value of true
means the note is shown.
visible?: boolean;
Property Value
boolean
Remarks
width
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Specifies the width of the note.
width?: boolean;
Property Value
boolean
Remarks
Office Add-ins