跳到主要内容

GetElement

使用指定的位置返回超链接元素。

语法

expression.GetElement(nPos);

expression - 表示 ApiHyperlink 类的变量。

参数

名称必需/可选数据类型默认值描述
nPos必需number要获取其内容的元素必须位于的位置。

返回值

ParagraphContent

示例

访问电子表格中超链接内的特定内容元素。

// How do I read the inner content of a hyperlink in a spreadsheet?

// Pull out an individual piece from a hyperlink by its position in a spreadsheet.

const worksheet = Api.GetActiveSheet();

const fill = Api.CreateSolidFill(Api.RGB(160, 100, 130));
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const shape = worksheet.AddShape(
'roundRect',
Api.MillimetersToEmus(70), Api.MillimetersToEmus(20),
fill, stroke,
0, 0, 2, 0
);

const content = shape.GetContent();
const paragraph = content.GetElement(0);
const run = Api.CreateRun();
run.AddText('Visit ONLYOFFICE for developers');
paragraph.AddElement(run, 0);

const hyperlink = run.AddHyperlink('https://api.onlyoffice.com', 'ONLYOFFICE for developers');
const element = hyperlink.GetElement(0);
const classType = element ? element.GetClassType() : 'null';
worksheet.GetRange('A1').SetValue('Element class type: ' + classType);