Nov 29, 2014 #1 K kenambo Full Member level 6 Joined Feb 26, 2012 Messages 393 Helped 52 Reputation 104 Reaction score 48 Trophy points 1,308 Location India Visit site Activity points 3,859 Hi, How to create a new cell view using Skill. skill have the command for new library .. but how can i open a new cellview in the same library and cell. tell me some suggestions, Thanks Last edited by a moderator: Nov 30, 2014
Hi, How to create a new cell view using Skill. skill have the command for new library .. but how can i open a new cellview in the same library and cell. tell me some suggestions, Thanks
Nov 30, 2014 #2 erikl Super Moderator Staff member Joined Sep 9, 2008 Messages 8,108 Helped 2,695 Reputation 5,370 Reaction score 2,308 Trophy points 1,393 Location Germany Visit site Activity points 44,123 Re: New File Creation Using Skill kenambo said: ... how can i open a new cellview in the same library. Click to expand... Here are some relevant pages from the Cadence® SKILL Language Programming Lab Manual, Version 5.0: View attachment Skill_Programming_5_0.lab_pp162-165.pdf
Re: New File Creation Using Skill kenambo said: ... how can i open a new cellview in the same library. Click to expand... Here are some relevant pages from the Cadence® SKILL Language Programming Lab Manual, Version 5.0: View attachment Skill_Programming_5_0.lab_pp162-165.pdf
Dec 3, 2014 #3 M mike.zhang Newbie level 6 Joined Jul 25, 2006 Messages 11 Helped 1 Reputation 2 Reaction score 1 Trophy points 1,283 Visit site Activity points 1,323 create a new cell :deNewCellView("libname" "cellname" "viewname" “viewtype” winspec) example: deNewCellView("newlib" "test" "layout" "maskLayout" list(list(0 0) list(1200 800))) deNewCellView("newlib" "test" "schematic" "schematic" list(list(0 0) list(1200 800))) open a exist cell geOpen(?lib "libname" ?cell "cellname" ?view "viewname")
create a new cell :deNewCellView("libname" "cellname" "viewname" “viewtype” winspec) example: deNewCellView("newlib" "test" "layout" "maskLayout" list(list(0 0) list(1200 800))) deNewCellView("newlib" "test" "schematic" "schematic" list(list(0 0) list(1200 800))) open a exist cell geOpen(?lib "libname" ?cell "cellname" ?view "viewname")