UserAddress Property

Applies To

Application object.

Description

Returns or sets the user's mailing address. Read/write String.

Remarks

The mailing address is used as a return address on envelopes.

See Also

Address property, Envelope property, UserInitials property, UserName property.

Example

This example sets the user's return address. The Chr function is used to return a line feed character.

Application.UserAddress = "4200 Third Street NE" & Chr(10) _
    & "Anytown, WA  98999"
This example returns the address found in the Mailing address option on the User Information tab in the Options dialog box.

Msgbox Application.UserAddress