Autodesk Revit API
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Element ID
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
169 Views, 4 Replies
10-02-2012 08:58 PM
Can anyone please tell me, why this code is not working for Revit 2013 ?
Document^ doc = commandData->Application->ActiveDocument;
ElementId id;
id.Value = 132059;
Autodesk::Revit::Element^ selElement = doc->Element[id];
Selection^ sel = doc->Selection;
sel->Elements->Add(selElement );
Re: Element ID
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-03-2012 02:38 AM in reply to:
mohammadarslan
Could you be a bit more specific...how it's not working? Exception? Selection not updating?
Re: Element ID
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-03-2012 02:41 AM in reply to:
ollikat
i am trying to do selection using Element Id .
But its not working !
Re: Element ID
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-03-2012 02:49 AM in reply to:
mohammadarslan
Some time ago I encountered something similar...I mean after adding element to selection didn't affect the document. Try following code...that's how I have managed to get it work...though it's long time ago.
m_uiApplication->ActiveUIDocument->Selection->Elements->Clear(); SelElementSet ^elemSet = SelElementSet::Create(); elemSet->Insert(element); m_uiApplication->ActiveUIDocument->Selection->Elem ents::set(elemSet);
Re: Element ID
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-03-2012 02:51 AM in reply to:
ollikat
ok thankyou so much ! I will try again.

