powerpoint package
类
接口
枚举
PowerPoint.ConnectorType |
指定线条形状的连接线类型。 |
PowerPoint.DocumentPropertyType |
指定自定义属性的文档属性类型。 |
PowerPoint.ErrorCodes | |
PowerPoint.GeometricShapeType |
指定对象的形状类型 |
PowerPoint.InsertSlideFormatting |
指定插入幻灯片时的格式设置选项。 |
PowerPoint.ParagraphHorizontalAlignment |
表示 PowerPoint.Shape 中 PowerPoint.TextFrame 的水平对齐方式。 |
PowerPoint.ShapeAutoSize |
确定允许的自动调整大小的类型。 |
PowerPoint.ShapeFillType |
指定形状的填充类型。 |
PowerPoint.ShapeFontUnderlineStyle |
应用于字体的下划线类型。 |
PowerPoint.ShapeLineDashStyle |
指定直线的虚线线型。 |
PowerPoint.ShapeLineStyle |
指定线型。 |
PowerPoint.ShapeType |
指定形状的类型。 |
PowerPoint.TextVerticalAlignment |
表示 PowerPoint.Shape 中 PowerPoint.TextFrame 的垂直对齐方式。 如果选择了一个居中选项,则 的内容 |
函数
Power |
创建并打开新演示文稿。 (可选)可以使用 Base64 编码的 .pptx 文件预填充演示文稿。 |
Power |
使用新的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。 承诺解决后,将释放在执行过程中自动分配的任何跟踪对象。 |
Power |
使用以前创建的 API 对象的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。 承诺解决后,将释放在执行过程中自动分配的任何跟踪对象。 |
Power |
使用以前创建的 API 对象的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。 |
函数详细信息
PowerPoint.createPresentation(base64File)
创建并打开新演示文稿。 (可选)可以使用 Base64 编码的 .pptx 文件预填充演示文稿。
export function createPresentation(base64File?: string): Promise<void>;
参数
- base64File
-
string
可选。 Base64 编码 .pptx 文件。 默认值为 null。
返回
Promise<void>
示例
const myFile = <HTMLInputElement>document.getElementById("file");
const reader = new FileReader();
reader.onload = (event) => {
// Remove the metadata before the base64-encoded string.
const startIndex = reader.result.toString().indexOf("base64,");
const copyBase64 = reader.result.toString().substr(startIndex + 7);
PowerPoint.createPresentation(copyBase64);
};
// Read in the file as a data URL so we can parse the base64-encoded string.
reader.readAsDataURL(myFile.files[0]);
PowerPoint.run(batch)
使用新的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。 承诺解决后,将释放在执行过程中自动分配的任何跟踪对象。
export function run<T>(batch: (context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>): OfficeExtension.IPromise<T>;
参数
- batch
-
(context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>
一个函数,它接受 RequestContext 并返回承诺 (通常只是“context.sync () ”) 的结果。 上下文参数有助于向 PowerPoint 应用程序发出请求。 由于 Office 加载项和 PowerPoint 应用程序在两个不同的进程中运行,因此需要 RequestContext 才能从外接程序访问 PowerPoint 对象模型。
返回
PowerPoint.run(object, batch)
使用以前创建的 API 对象的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。 承诺解决后,将释放在执行过程中自动分配的任何跟踪对象。
export function run<T>(object: OfficeExtension.ClientObject, batch: (context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>): OfficeExtension.IPromise<T>;
参数
- object
- OfficeExtension.ClientObject
以前创建的 API 对象。 批处理将使用与传入对象相同的 RequestContext,这意味着“context.sync () ”将选取应用于该对象的任何更改。
- batch
-
(context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>
一个函数,它接受 RequestContext 并返回承诺 (通常只是“context.sync () ”) 的结果。 上下文参数有助于向 PowerPoint 应用程序发出请求。 由于 Office 加载项和 PowerPoint 应用程序在两个不同的进程中运行,因此需要 RequestContext 才能从外接程序访问 PowerPoint 对象模型。
返回
PowerPoint.run(objects, batch)
使用以前创建的 API 对象的 RequestContext 执行对 PowerPoint 对象模型执行操作的批处理脚本。
export function run<T>(objects: OfficeExtension.ClientObject[], batch: (context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>): OfficeExtension.IPromise<T>;
参数
- objects
以前创建的 API 对象的数组。 将对数组进行验证,以确保所有对象共享相同的上下文。 批处理将使用此共享的 RequestContext,这意味着“context.sync () ”将选取应用于这些对象的任何更改。
- batch
-
(context: PowerPoint.RequestContext) => OfficeExtension.IPromise<T>
一个函数,它接受 RequestContext 并返回承诺 (通常只是“context.sync () ”) 的结果。 上下文参数有助于向 PowerPoint 应用程序发出请求。 由于 Office 加载项和 PowerPoint 应用程序在两个不同的进程中运行,因此需要 RequestContext 才能从外接程序访问 PowerPoint 对象模型。