跳到主要内容

GetFont

Returns the ApiFont object that represents the font of the specified characters.

Syntax

expression.GetFont();

expression - A variable that represents a ApiCharacters class.

Parameters

This method doesn't have any parameters.

Returns

ApiFont

Example

This example shows how to get the ApiFont object that represents the font of the specified characters.

// How to get font style of the array of characters.

// Use font of the specified characters to set their style.

let worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("B1");
range.SetValue("This is just a sample text.");
let characters = range.GetCharacters(9, 4);
let font = characters.GetFont();
font.SetBold(true);