Re: Why the boundary curve of area reinforcement is not connect to adjacent curv
Hi Mr. Kang, Thank for your reply and submit the issue for help.Please find the following respond for your reference:impact on your application and/or your development.yes, it may limit the ability of...
View ArticleRe: Set a Project Parameter
I structured my question incorrectly. My apologies. I'm actually trying to set the value of a project parameter (created from a shared parameter) that is in the "Project Information" category. I know...
View ArticleRe: Show/Select Camera in Plan View via API
I guess you could use windows UI Automation to access the Show camera command but the user will only see one of the cameras at a time no a view of multiple ones. what you may be able to do using the...
View ArticleRe: Set a Project Parameter
Document Doc = commandData.Application.ActiveUIDocument.Document; Parameter myParam = Doc.ProjectInformation.LookupParameter ("Building Designator"); myParam.Set("B");This works
View ArticleRe: Show/Select Camera in Plan View via API
Dear FaustoMendezcom, Thank you so much for both your effort and your answer. Indeed, that's the worfklow that we've outlined too, but currently placing Reference Views is not exposed by the API. I...
View ArticleRe: Set a Project Parameter
Congratulations on solving the issue! Congratulations also on narrowing down what the real question actually was: setting a (normal) parameter on the project information element. To answer your other...
View ArticleDisable IUpdater in Family Document
While implementing background applications using IUpdater I want to ensure it is only functioning in Project Documents and not Family Documents. I assume they will still load up when opening up a...
View ArticleRe: Disable IUpdater in Family Document
Just use the Application Initialized Events like public class DocumentOpenedEventArgs : RevitAPIPostDocEventArgs and or public class DocumentOpeningEventArgs : RevitAPIPreEventArgslikepublic void...
View ArticleRe: Import family instance to existing floor with specific location in REVIT API
Hi Jeremy, Thanks for your given suggestion, we had updated the reference direction code XYZ.BasisX, its worked fine. Thanks for your supporting,Somu.
View ArticleRe: Dimension between walls corners using Revit's API
Dear , Looking at your panel image lacking dimensioning to the door and window edges, I wonder... Couldn't you simply retrieve the wall geometry and determine all vertical faces perpendicular to the...
View ArticleRe: Disable IUpdater in Family Document
Look at the description of the DistanceToSurfaces SDK sample: https://thebuildingcoder.typepad.com/blog/2010/04/element-level-events.html#3 It says: On start-up, register a DocumentOpened event. When a...
View ArticleHow to add Image to Image parameter into Identity Data?
HiHow could i add Image to Image Instance Parameter into Identity Data? i tried BuiltInParameter class, but didn't work!
View ArticleRe: How to add Image to Image parameter into Identity Data?
Hi! Find ImageType element (or create a new one), provide its id to parameter.Set method
View ArticleRe: How to add Image to Image parameter into Identity Data?
thanks, but as i know its not possible to create project parameter https://forums.autodesk.com/t5/revit-api-forum/create-project-parameter-not-shared-parameter/td-p/5150182 if i use this code for...
View ArticleRe: How to add Image to Image parameter into Identity Data?
You are right, you should get your parameter by BuiltInParameter.ALL_MODEL_TYPE_IMAGE, that is correct (from your code). But the next part won't work. You should do something like:var imageType =...
View ArticleRemove flip controls from bounding box computation family instance
How can I Remove flip controls from bounding box computation of a family instance within a revit 2017 project?can I use a filter , the revit api docs doesnt seem to provide a soln here. It did tell me...
View ArticleRe: Automatic Creation of Void Extrusion Element/ Retrieve Cut Area from element
Here are some discussions dealing wit various aspects of voids: http://thebuildingcoder.typepad.com/blog/2011/06/boolean-operations-and-instancevoidcututils.html...
View ArticleRe: Automatic Creation of Void Extrusion Element/ Retrieve Cut Area from element
Looking at your descriptive image, the problem seems quite simple to me. You have a certain area of interest, and certain elements that partially intersect the volume above it. Instead of determining...
View ArticleRe: Dynamic Model update
hi Jeremy, I already figure it out. I avoid using Element.GetChangeTypeAny().
View Article