Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Returns or sets the subject text of a letter created by the Letter Wizard. Read/write String.
Syntax
expression .Subject
expression Required. A variable that represents a LetterContent object.
Example
This example displays the subject of a letter created by the Letter Wizard, unless the subject is an empty string.
If ActiveDocument.GetLetterContent.Subject <> "" Then
MsgBox ActiveDocument.GetLetterContent.Subject
End If