Application.MailingLabel Property (Word)

Returns a MailingLabel object that represents a mailing label.

Syntax

expression .MailingLabel

expression An expression that returns an Application object.

Example

This example creates a new Avery 2160 mini-label document for a specified address.

addr = "Dave Edson" & vbCr & "123 Skye St." _ 
 & vbCr & "Our Town, WA 98004" 
Application.MailingLabel.CreateNewDocument _ 
 Name:="2160 mini", Address:=addr, ExtractAddress:=False

See Also

Concepts

Application Object Members

Application Object