WPS 基础接口 > 文字 API 参考 > Document > 属性 > Document.MailEnvelope 属性
返回一个 MsoEnvelope 对象,该对象代表文档的电子邮件标题。

语法

表达式.MailEnvelope

表达式   返回 Document 对象的表达式。

示例

本示例为活动文档的电子邮件标题设置批注。

示例代码
function HeaderComments(){
    ActiveDocument.MailEnvelope.Introduction = "Please review this document and let me know " + "what you think.  I need your input by Friday." + "  Thanks."
}


请参阅