SetSize
Sets the font size property to the specified font. 💡 This method will work only with the text format of the cell.
Syntax
expression.SetSize(Size);
expression - A variable that represents a ApiFont class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| Size | Required | number | Font size. |
Returns
This method doesn't return any data.
Example
Adjust the text size of specific characters in a cell in a spreadsheet.
// How do I make part of the text in a cell larger or smaller in a spreadsheet?
// Resize a selected run of characters to a chosen point size in a spreadsheet.
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.SetSize(18);