DefaultPrintFIMA Property

Applies To

Envelope object.

Description

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.

See Also

DefaultPrintBarCode property.

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