Print Automation Help

Are the printing color properties not available for automation or am I unable to find them?

I would like to be able to include the output color profile and other options from the Colors tab in the printing properties.

Any tips on this? Thanks in advance for the explanation...


With ActiveDocument.PrintSettings
    .Reset
    .PrintToFile = False
    .SelectPrinter prtName.Value
    .SetCustomPaperSize PageW.Value, PageH.Value, prtOrnt
    .PrintRange = prnPageRange
    .PageMatchingMode = prnPageMatchOrientation 'prnPageMatchPrinterDefault
    .Collate = True
    .Copies = Quant.Value
    With .Options
        .TextInBlack = True
        .ColorMode = prnModeFullColor
        .ObjectsColorMode = prnObjectsNative 'prnObjectsRGB
        .RasterizePage = False
        .PreservePureBlack = True
        .UseColorProfile = True
    End With
    .PrintOut
End With