Specifies whether the file this print job will be saved to is in Macintosh format
Syntax:
Property Get ForMac() As Boolean
Property Let ForMac(ByVal Value As Boolean)
Remarks:
The ForMac property specifies a Boolean (True or False) value that indicates whether, when printing to file, the file can be read on a Macintosh computer.
Examples:
The following VBA example creates a new document containing three shapes and prints the document to a file.
Sub Test()
Dim doc As Document
Dim s As Shape
Set doc = CreateDocument
Set s = ActiveLayer.CreateRectangle(1.114882, 10.078268, 3.030787, 8.485827, 0, 0, 0, 0)
Set s = ActiveLayer.CreateEllipse(4.075827, 7.540315, 6.016614, 5.375591, 90#, 90#, False)
Set s = ActiveLayer.CreatePolygon(5.842445, 2.912283, 7.758343, 0.44898, 5, 1, 1, False, 50, 100)
With doc
  With .PrintSettings

 .PrintToFile = True

 .ForMac = False

 .FileMode = prnSingleFile

 .FileName = "C:\Temp.prn"
  End With
  .PrintOut
End With 
End Sub