跳到主要内容

SetUnderline

为当前字体设置请求中指定类型的下划线。 💡 此方法仅适用于单元格的文本格式。

语法

expression.SetUnderline(Underline);

expression - 表示 ApiFont 类的变量。

参数

名称必需/可选数据类型默认值描述
Underline必需XlUnderlineStyle下划线类型。

返回值

此方法不返回任何数据。

示例

此示例为字体设置请求中指定类型的下划线。

// How to change a regular text to an underlined one.

// Get a font object of characters and make it underlined.

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