SetCaption
function SetCaption(Caption: string = null): void
Description
Sets a string value that represents the text of the specified range of characters.
Parameters
- Caption
string
null A string value that represents the text of the specified range of characters.
Returns
void
Try It
var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("B1");
oRange.SetValue("This is just a sample text.");
var oCharacters = oRange.GetCharacters(23, 4);
oCharacters.SetCaption("string");