sudha
Joined: 05 Feb 2009
Posts: 1
|
Posted:
Thu Feb 05, 2009 1:02 pm Post subject:
changing pathWidth while using "enterPath" functio |
|
|
HI,
I'm using enterPath function. I want to synchronise the width of the rubber band with the minwidth of entry layer of LSW. I don't want to use a form to get the entry layer width. I'm using below code to get width, but the width is not getting updated whenever i change the layer in LSW window. Can any one suggest a solution with examples?
procedure(Points1( w_windowId b_done l_points )
printf( "List of points entered %L\n" l_points )
)
procedure(enterPath1()
enterPath(
?prompts list(
"Enter the first point:"
"Enter the next point:"
)
?pathWidth techGetSpacingRule(techGetTechFile(geGetWindowCellView()) "minWidth" car(leGetEntryLayer()))
?doneProc "Points1"
)
)
|
|