Delete a cell in SKILL

Discussion in 'Cadence' started by Taivo Saarts, Sep 1, 2003.

  1. Taivo Saarts

    Taivo Saarts Guest

    Hi,

    In my SKILL procedure I created a temporary cell using
    dbOpenCellViewByType(lib cell view "maskLayout" "w") function.


    How can I delete this cell afterwards?


    Any help appreciated,

    Taivo.
     
    Taivo Saarts, Sep 1, 2003
    #1
  2. d_cell = ddGetObj( lib cell )
    ddDeleteObj( d_cell )

    Regards Bernd
     
    Bernd Fischer, Sep 1, 2003
    #2
  3. Taivo Saarts

    S Hazen Guest

    Within the same procedure that does the cellview create you can just
    assign the result to a local variable and use a dbClose command
    without a dbSave command.

    let( ( cv )

    cv = dbOpenCellViewByType(lib cell view "maskLayout" "w")

    ;--- do not do a dbSave on the cv

    dbClose( cv )

    ) ; let

    If it still shows up in the Library Manager, do a View->Refresh in the
    Library Manager window.

    If you need to do a Save on the cellview then Bernd's solution will
    work.

    -Steve
     
    S Hazen, Sep 2, 2003
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.