PowerPoint.RequestContext class
RequestContext 对象有助于向 PowerPoint 应用程序发出请求。 由于 Office 加载项和 PowerPoint 应用程序在两个不同的进程中运行,因此需要请求上下文才能从外接程序访问 PowerPoint 对象模型。
- 扩展
注解
示例
// *.run methods automatically create an OfficeExtension.ClientRequestContext
// object to work with the Office file.
await PowerPoint.run(async (context) => {
const presentation = context.presentation;
// Interact with the PowerPoint presentation...
});
构造函数
(constructor)(url) | 构造 类的新实例 |
属性
application | |
presentation |
构造函数详细信息
(constructor)(url)
构造 类的新实例RequestContext
constructor(url?: string);
参数
- url
-
string