GetNumberFormat
Returns a value that represents the format code for the current range.
Syntax
expression.GetNumberFormat();
expression
- A variable that represents a ApiRange class.
Parameters
This method doesn't have any parameters.
Returns
string | null
Example
This example shows how to get a value that represents the format code for the current range.
- Code
- Result
let worksheet = Api.GetActiveSheet();
let range = worksheet.GetRange("B2");
range.SetValue(3);
let format = range.GetNumberFormat();
worksheet.GetRange("B3").SetValue("Number format: " + format);