TransactionGroup in Revit API
Hi, I need to use same "TransactionGroup" for different documents. When i am giving rollback option which was available in transaction group class the changes I made in revit document not cleared....
View ArticleRe: Ceiling by sketch and shape editing tools
Hi Jeremy,ok. I will set it up. You want it as a document macro right?/Erik
View ArticleRe: sdd a mullion to a corner in curtain wall via API c#
Dear Bruno, I am the worst person to ask a question like that. For advice in such a situation, you really need to discuss with a Revit product usage expert, application engineer or product support. It...
View ArticleRe: TransactionGroup in Revit API
Hi, a TransactionGroup is used to bundle a set of single Transactions in one single entry in the undo stack.Each Document has its own undo stack. Thus, using a TransactionGroup with several different...
View ArticleRebarContainerItems
Hi, Is there a way to access parameters from RebarContainerItems ?If two rebars in container have different values, it will empty i RebarContainer. Or maybe a way to get the actual rebar presented by...
View ArticleRe: TransactionGroup in Revit API
Hi Revitalizer, Thanks for the reply. Can we rollback the committed transaction? Thanks and Regards,Vinoth Kumar.R
View ArticleRe: TransactionGroup in Revit API
I think you can do both. using (TransactionGroup tg = new TransactionGroup(doc, "All Walls")) { tg.Start(); foreach (Wall w in Walls) { using (Transaction t = new Transaction(doc, "Change Wall...
View ArticleRe: SetTangentLock in ProfileSketch
So I simplified. ICollection<ElementId> delIds = null; List<ElementId> enmIDs = new List<ElementId>(); using (SubTransaction delTrans = new SubTransaction(famdoc)) { try {...
View ArticleRe: SetTangentLock in ProfileSketch
Dear Christian, Wow, great, thank you very much for that! Do you have a sample model for me to test it in? Optimally, a complete reproducible case including step by step instructions for driving it?...
View ArticleRe: Ceiling by sketch and shape editing tools
Dear Erik, Thank you very much! Yes please. That is what the development team prefer, since they have no C# add-in development environment set up. Cheers, Jeremy
View ArticleRe: SetTangentLock in ProfileSketch
I would need to isolate my code. Maybe a bit later. Have to get other things to resolve right now. But I will be @ AU so might have time there. Thanks again.Christian
View ArticleRe: TransactionGroup in Revit API
Many thanks to Revitalizer and Christian for their helpful answers. By the way, I just put together a new topic group on transaction handling for The Building Coder:...
View ArticleRe: SetTangentLock in ProfileSketch
Okay, totally understand, no worries, mate. How about a sample model, or two or three lines of instructions? Thx! Looking forward to seeing you at AU! Cheers, Jeremy
View ArticleRe: SetTangentLock in ProfileSketch
Jeremy, there is an image in one of the upper posts. All I can do for now. Cant give you the family. Sorry for that. regardsChristian
View ArticleRe: Parsing decals parameters in Revit 2014 API
Is there still no way to access the actual decal parameters in the Revit 2017 API? I am getting the Decal Attributes parameter from the decal type elements but it's always empty.
View ArticleRe: TransactionGroup in Revit API
Dear Vinoth, The question is redundant and amply answered by the available material that we already pointed to. For a final clarification: The only way to make a modification to a document is to open a...
View ArticleRe: Warning Information
Dear Dale, Thank you again for your patience. The development team responded further on our prompt for news on the wish list item CF-2116 [API ability to retrieve Revit Warnings like Manage...
View ArticleRe: Warning Information
Dear Jeremy, I also looking for this feature. Yes this is good.
View ArticleRe: Automatic space creation problem
mapspacenamer, thank you for the advice! Sorry for late answer.I will try to move this way. There is a hope that solution is easier than you suppose, because PlanCircuit class even has the very needed...
View Article