我正在尝试使用EmailOptions属性。 我在Microsoft文档(https://docs.microsoft.com/en-us/office/vba/api/word.emailoptions)上找到了该示例,并且正在尝试中。但是它给出了错误:“对象不支持此属性或方法”
我添加了对MS Word和Excel的引用。我想念什么?
Option Explicit
Sub x()
With Outlook.Application.EmailOptions.EmailSignature
If .NewMessageSignature = "" Then
MsgBox "There is no signature for new "
Else
MsgBox "There is signature for new e-mail"
End If
End With
End Sub
答案 0 :(得分:0)
EmailOptions
属性由Word.Application
对象而不是Outlook.Application
对象公开。