SenderCompany Property

Applies To

LetterContent object.

Description

Returns or sets the company name of the person creating a letter with the Letter Wizard. Read/write String.

See Also

SenderJobTitle property, SenderName property.

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