[ Home | Contents | Search | Next | Previous | Up ]
From: Jim
Product: DGNLink
Date: 4/5/00
Time: 2:22:25 PM
Remote Name: 63.238.54.139
Sorry, DGNLink can't separate entities on the same layer.
But, Cats can. You can set up Cats rules like this in the control file: ;By default put everything which does not match the other criteria below on level 10 If Layer=ABC Then Level=10 Endif
;Put linetype Continuous on level 34 If Layer=ABC Linetype=Continuous Then Level=34 Endif ;Put linetype Dashed on level 35, set the linetype to medium dashed and weight to 1 If Layer=ABC Linetype=Dashed Then Level=35 Linetype=2 Weight=1 Endif
;Put the Blue text on level 2 make it red and weight 2 If Layer=ABC EntityType=(7,28) Color=5 Then Level=2 Color=3 Weight=2 Endif ;Put the Yellow text on level 12 make it magenta and weight 0 If Layer=ABC EntityType=(7,28) Color=2 Then Level=12 Color=5 Weight=0 Endif