DefaultPrintFIMA Property

Microsoft Word Visual Basic

True to add a Facing Identification Mark (FIM-A) to envelopes by default. Read/write Boolean.

Note  For U.S. mail only. A FIM-A code is used to presort courtesy reply mail. The DefaultPrintBarCode property must be set to True before this property is set.

Example

This example sets the default envelope settings to include a bar code and a Facing Identification Mark (FIM-A).

With ActiveDocument.Envelope
    .DefaultPrintBarCode = True
    .DefaultPrintFIMA = True
End With