Excel.Interfaces.NoteData interface
An interface describing the data returned by calling note.toJSON()
.
Properties
author |
Gets the author of the note. |
content | Gets or sets the text of the note. |
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
authorName
Gets the author of the note.
authorName?: string;
Property Value
string
Remarks
content
Gets or sets the text of the note.
content?: string;
Property Value
string
Remarks
height
Specifies the height of the note.
height?: number;
Property Value
number
Remarks
visible
Specifies the visibility of the note. A value of true
means the note is shown.
visible?: boolean;
Property Value
boolean
Remarks
width
Specifies the width of the note.
width?: number;
Property Value
number