全部显示

OverPrint 属性

       

如果创建用于专业印刷的分色模板,则 MsoTrue 表示指定的图形没有在分色模板上打印,该模板将图形的颜色级别设为 0(零)。MsoTriState,可读写。

expression.OverPrint

expression   必需。该表达式返回一个 ColorFormat 对象。

示例

本示例在活动文档中新建一个图形,设置其填充颜色,然后从打印机的模板中排除该颜色。

Sub TintShade()
    Dim shpHeart As Shape
    Set shpHeart = ActiveDocument.Shapes.AddShape( _
        Type:=msoShapeHeart, Left:=150, _
        Top:=150, Width:=250, Height:=250)
    With shpHeart.Fill.ForeColor
        .SetCMYK Cyan:=0, Magenta:=125, Yellow:=12, Black:=25
        .TintAndShade = 0.3
        .OverPrint = msoTrue
    End With
End Sub