Skip to main content

GetParent

Returns the parent ApiCharacters object of the specified font.

Syntax

expression.GetParent();

expression - A variable that represents a ApiFont class.

Parameters

This method doesn't have any parameters.

Returns

ApiCharacters

Example

This example shows how to get the parent ApiCharacters object of the specified font.

let worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("B1");
range.SetValue("This is just a sample text.");
let characters = range.GetCharacters(23, 4);
let font = characters.GetFont();
let parent = font.GetParent();
parent.SetText("string");