Highlight

Discussion in 'AutoCAD' started by tsigwing, Jan 16, 2004.

  1. tsigwing

    tsigwing Guest

    How do I know which items on screen are currently highlighted?
     
    tsigwing, Jan 16, 2004
    #1
  2. tsigwing

    Jeff Mishler Guest

    Determines which objects are selected and gripped

    (ssgetfirst)

    Returns a list of two selection sets similar to those passed to
    sssetfirst. The first element in the list is a selection set of entities
    that are gripped but not selected. The second element is a selection set
    of entities that are both gripped and selected. Either (or both)
    elements of the list can be nil.

    So, (setq ss (cadr (ssgetfirst))) will give you the ss of the currently
    selected items.

    HTH, Jeff
     
    Jeff Mishler, Jan 16, 2004
    #2
  3. tsigwing

    tsigwing Guest

    I have an object picked on screen, and it is highlighted and I can see its grips. I am trying to determine how I get ahold of this object.
     
    tsigwing, Jan 16, 2004
    #3
  4. tsigwing

    tsigwing Guest

    Thanks, got it.
     
    tsigwing, Jan 16, 2004
    #4
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.