GetSuperscript
Returns the superscript property of the specified font.
Syntax
expression.GetSuperscript();
expression
- A variable that represents a ApiFont class.
Parameters
This method doesn't have any parameters.
Returns
boolean | null
Example
This example shows how to get the superscript property of the specified font.
- Code
- Result
// How to determine a font superscript property.
// Get a boolean value that represents whether a font has a superscript property or not and show the value in the worksheet.
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.SetSuperscript(true);
let isSuperscript = font.GetSuperscript();
worksheet.GetRange("B3").SetValue("Superscript property: " + isSuperscript);