Office.AttachmentDetails interface

表示服务器中一个项目上的附件。 仅限阅读模式。

对象数组 AttachmentDetails 作为约会或邮件项的 attachments 属性返回。

注解

[ API set: Mailbox 1.1 ]

最低权限级别读取项

适用的 Outlook 模式:读取

示例

// The following code builds an HTML string with details
// of all attachments on the current item.
const item = Office.context.mailbox.item;
let outputString = "";

if (item.attachments.length > 0) {
    for (let i = 0 ; i < item.attachments.length ; i++) {
        const attachment = item.attachments[i];
        outputString += "<BR>" + i + ". Name: ";
        outputString += attachment.name;
        outputString += "<BR>ID: " + attachment.id;
        outputString += "<BR>contentType: " + attachment.contentType;
        outputString += "<BR>size: " + attachment.size;
        outputString += "<BR>attachmentType: " + attachment.attachmentType;
        outputString += "<BR>isInline: " + attachment.isInline;
    }
}

console.log(outputString);

属性

attachmentType

获取一个指示附件类型的值。

contentType

获取附件的 MIME 内容类型。

警告:虽然 contentType 该值是附件扩展的直接查找,但内部映射不会主动维护,因此此属性已被弃用。 如果需要特定类型,请获取附件的扩展并相应地处理。 有关详细信息,请参阅 相关博客文章

id

获取附件的 Exchange 附件 ID。 但是,如果附件类型为 MailboxEnums.AttachmentType.Cloud,则返回文件的 URL。

isInline

获取指示是否应在项目正文中显示附件的值。

name

获取附件的名称。

重要提示:对于通过拖放或“附加项目”附加的邮件或约会项目, name 在 Outlook on Mac 中包含文件扩展名,但不包括 Web 或 Windows 上的扩展。

size

获取以字节为单位的附件大小。

属性详细信息

attachmentType

获取一个指示附件类型的值。

attachmentType: MailboxEnums.AttachmentType | string;

属性值

contentType

警告

现已弃用此 API。

If you require specific content types, grab the attachment's extension and process accordingly.

获取附件的 MIME 内容类型。

警告:虽然 contentType 该值是附件扩展的直接查找,但内部映射不会主动维护,因此此属性已被弃用。 如果需要特定类型,请获取附件的扩展并相应地处理。 有关详细信息,请参阅 相关博客文章

contentType: string;

属性值

string

id

获取附件的 Exchange 附件 ID。 但是,如果附件类型为 MailboxEnums.AttachmentType.Cloud,则返回文件的 URL。

id: string;

属性值

string

isInline

获取指示是否应在项目正文中显示附件的值。

isInline: boolean;

属性值

boolean

name

获取附件的名称。

重要提示:对于通过拖放或“附加项目”附加的邮件或约会项目, name 在 Outlook on Mac 中包含文件扩展名,但不包括 Web 或 Windows 上的扩展。

name: string;

属性值

string

size

获取以字节为单位的附件大小。

size: number;

属性值

number