SetData
设置当前 OLE 对象的数据。
语法
expression.SetData(sData);
expression - 表示 ApiOleObject 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| sData | 必需 | string | OLE 对象字符串数据。 |
返回值
boolean
示例
此示例设置当前 OLE 对象的数据。
// How to add link to the OLE object.
// Update content of the OLE object.
let doc = Api.GetDocument();
let oleObject = Api.CreateOleObject(
'https://static.onlyoffice.com/assets/docs/samples/img/onlyoffice_logo.png',
150 * 36000, 150 * 36000,
'https://youtu.be/SKGz4pmnpgY',
'asc.{38E022EA-AD92-45FC-B22B-49DF39746DB4}'
);
let paragraph = doc.GetElement(0);
paragraph.AddDrawing(oleObject);
oleObject.SetData('https://youtu.be/eJxpkjQG6Ew');