SenderCompany Property

Microsoft Word Visual Basic

expression.SenderCompany

expression    Required. An expression that returns a LetterContent object.

Example

This example retrieves the Letter Wizard elements from the active document. If the sender's company name isn't blank, the example displays the text in a message box.

If ActiveDocument.GetLetterContent.SenderCompany <> "" Then
    MsgBox ActiveDocument.GetLetterContent.SenderCompany
End If