跳到主要内容

CODE

Returns the code number from your computer's character set for the first character in the specified text string.

Syntax

expression.CODE(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | stringThe text for which to get the code of the first character.

Returns

number

Example

This example shows how to return the code number from your computer's character set for the first character in the specified text string.

// How to return the code number from your computer's character set.

// Use function to get a code number from your computer's character set.

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.CODE("office"));