Envelope.DefaultPrintFIMA Property (Word)
True to add a Facing Identification Mark (FIM-A) to envelopes by default. Read/write Boolean.
Syntax
expression .DefaultPrintFIMA
expression A variable that represents a Envelope object.
Remarks
This property applies to 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