Re: ExtensibleStorageFramework and ResultsBuilder location
Yes. Search your hard disk in the Revit SDK: /a/lib/revit/2020/SDK $ find . | grep ExtensibleStorageFramework ./Structural Analysis SDK/VisualStudio/Templates/ProjectTemplates/Visual C#/Autodesk/Code...
View ArticleRe: Parameter DMU
I see quite a number of existing questions and answers here in the forum when searching for `GetChangeTypeParameter`. Have you tried that at all?
View ArticleRe: Get Name of Family Type Parameter Associated to Nested Family Instance
yes there is a away to get the parent family for this. ElementId ParentFamilyinstanceId = myspeaker.SuperComponent() if you used the method SuperComponent it will get you the element Id of the parent...
View ArticleRe: CreateSweptBlendGeometry failed
hi,is this something related to your Question:https://thebuildingcoder.typepad.com/blog/2018/01/create-swept-blend-in-c.htmland...
View ArticleFilteredElementCollector inside foreach loop
Im stuck with something appearently simple but I dont know how to handle it. What Im trying is, having a list of views, obtain the elements in these views, eg: foreach (View V in Views)...
View ArticleRe: Brep has null reference
thanks for the reply. I know dynamo can do it and i am going through the source to figure out how. there is a wall by face component that accepts a surface, but the surface is just a dynamo surface...
View ArticleRe: Get Name of Family Type Parameter Associated to Nested Family Instance
Thank you for your reply. I do know about Super Components and Sub Components. I think you misunderstood my intent or I was not clear enough. I am not looking for the Family Type name but the Family,...
View ArticleRe: Get all Views that accept View Template
I don't think there is a direct solution. But .. if you can apply a ViewTemplate to a view, you can also enable Temporary View Properties, and vice versa. So .. all the views that...
View ArticleRe: Get all Views that accept View Template
Hi, Jeremy thanks for always being helpful i'll try this and get back to you what's my result. i know my code is messy 🙂 i'm still searching some ways how to improve in writing a code.
View ArticleRe: DirectShape Properties
thanks for the link!I actually modified the method to fit my needs a little more. I actually assign those properties in code to the Area elements (for know) But I will have to add another...
View ArticleRe: DirectShape Properties
thanks for the link!I actually modified the method to fit my needs a little more. I actually assign those properties in code to the Area elements (for know) But I will have to add another...
View ArticleRe: DirectShape Properties
thanks for the link!I actually modified the method to fit my needs a little more. I actually assign those properties in code to the Area elements (for know) But I will have to add another...
View ArticleReplicate Graphical Column Schedule Sort Order
Hi, I am trying to write an add-in with C# to automate the process of sequentially labeling structural columns to match the sequence in the graphical column schedule. I have written the following code...
View ArticleReplicate Graphical Column Schedule Sort Order with C#
Hi, I am trying to write an add-in with C# to automate the process of sequentially labeling structural columns to match the sequence in the graphical column schedule. I have written the following code...
View ArticleRe: Get Name of Family Type Parameter Associated to Nested Family Instance
Ok now I got what you mean... can you share your family sample... I will do some tests on it
View ArticleRe: FilteredElementCollector inside foreach loop
no not exactly you can't.. infact you can declare any type under if, but it must be scoped, because you are declaring under a condition. so the correct way is to add two egyptian brackets foreach (View...
View ArticleRe: Replicate Graphical Column Schedule Sort Order with C#
can you snapshot the schedule and the results that doesn't match...
View ArticleRe: Get all Views that accept View Template
Hi. this works like what i want! however, this eliminates the view schedule which has View Template parameter so i just add view schedule in the list and cast it to it's base class to get the...
View ArticleRe: Replicate Graphical Column Schedule Sort Order with C#
See attached screenshots. I've tried a few different ways which involve creating a list of the parameter as strings and then sorting or using orderby as below: List<Element> sortedElements =...
View Article