Previous Document Next Document

Object Model Reference : Classes : T : TrapLayer : Properties : TrapLayer.TrapType


TrapLayer.TrapType

Property TrapType As PrnTrapType

Description

Member of TrapLayer

The TrapType property controls the opacity of a trap.

VBA example

The following VBA example sets each trap layer as transparent.

Sub Test()
 Dim intCounter As Integer
 With ActiveDocument.PrintSettings.Trapping.Layers
  For intCounter = 1 To .Count - 1
   .Item(intCounter).TrapType = prnLayerTransparent
  Next intCounter
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.