Applies To | |||
Product(s): | ProjectWise InterPlot Organizer | ||
Version(s): | 08.11.11.34 | ||
Environment: | N/A | ||
Area: | General | ||
Subarea: | |||
Original Author: | Mark Marrero, Bentley Technical Support Group | ||
Problem Description
How to pick up a certain cell for color change only in the reference file.
This switch only picks this up in the active file and any reference files.
IF (cellname=="BradyLogo") THEN
color=(0,157,217)
PRIORITY=11
ENDIF
Steps to Resolve
The following Design Script alone should search the active files and all reference files for the cell named BradyLogo.
IF (cellname=="BradyLogo") THEN
color=(0,157,217)
PRIORITY=11
ENDIF
However, if you want to resymbolize the cell in only a specific reference file the following can be used:
IF ((cellname=="BradyLogo") and (lname == ‘border’)) THEN
color=(0,157,217)
PRIORITY=11
ENDIF
Note: ‘border’ in this example is the logical name of the reference file. Your logical name is probably different.