Previous Document Next Document

Object Model Reference : Classes : P : PrintTrapping : Properties : PrintTrapping.BlackDensityLimit


PrintTrapping.BlackDensityLimit

Property BlackDensityLimit As Double

Description

Member of PrintTrapping

The BlackDensityLimit property sets the neutral density value for the black ink in print trapping.

VBA example

The following VBA example displays the values of properties that represent the thresholds of print trapping.

Sub Test()
 Dim s As String
 With ActiveDocument.PrintSettings.Trapping
  s = "Black Color Limit: " & .BlackColorLimit & vbCr
  s = s & "Black Density Limit: " & .BlackDensityLimit & vbCr
  s = s & "Sliding Trap Limit: " & .SlidingTrapLimit & vbCr
  s = s & "Step Limit: " & .StepLimit
 End With
 MsgBox s
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.