Re: Wall reference to dxf lines
Hello, First of all, This does not seem like an API Question, am I correct? if the answer is Yes, Most likely you will not get an answer here. Revit API forum is for API (Application Programming...
View ArticleRe: Revit Server REST API and Project Data Exporting
Hi mkoslof! I am in a project I think that's what I read very similar to yours, in order that I want to achieve is to create a desktop application that can read a file and get .rvt then export data to...
View ArticleRe: Duct Width or diameter if else
Is this what you are talking about? If it is, what am I not doing correctly? It is saying that I cannot implicitly convert type string toAutodesk.Revit.DB.ConnectorProfileType and that...
View ArticleDuct
Hi I need to get the Duct families and Duct connectors like Duct FIttings,Duct Accessories,Flex Duct,Air Terminal through revit API. Kindly do the needful. Thanks in advance.
View ArticleRe: Deleting Fill Patterns
I noe have two fill patterns in my template and I only want the Solid Fill. Somewhere along the line we have ended up with the French version of solid fill. Can't rename, can't delete no way of getting...
View ArticleGet Label For different lanague Enumeration?
Is that possible to use LabelUtils.GetLabelFor to get different lanague string of Enumeration ? e.g. Walllocation line Enumeration in ENG lanague = WallCenterlinein CN lanague = 牆中心線in JP ...etcThanks
View ArticleRe: Get Label For different lanague Enumeration?
Hi, there is no such function, butI think you could use a web service to do...
View ArticleRe: Duct
Hi, Have you checked the Duct class ? Ducts and pipes are represented by the classes Duct, FlexDuct, Pipe and FlexPipe, derived from the MEP curve type. They provide the following functionality:Read...
View ArticleRe: CreateAddInCommandBinding for Duct/Pipe Sizing command
Hello, You can get and set the duct diameter, width and height via these parameters: Diameter:RBS_CURVE_DIAMETER_PARAMWidth: RBS_CURVE_WIDTH_PARAMHeight: RBS_CURVE_HEIGHT_PARAM For example, you want to...
View ArticleRe: Remove or Hide a Ribbon Tab
Hi, I found a post on the Builder Coder which Dynamically Hides and Displays a Ribbon panel. http://thebuildingcoder.typepad.com/blog/2013/07/dynamically-hide-and-display-a-ribbon-panel.html Hope...
View Article2016 Views on Sheet
I originally had a add-in that updates the view and views on a sheet to match "Sheet Number - detail number - Title on Sheet". I've updated my code to 2016 however I got an error message on getting my...
View ArticleRe: 2016 Views on Sheet
I'm having a bit of trouble following your code but my gut suggests thatGetAllViewports() returns the ids of ViewPort Elementsyou might have a look at getting the view by ViewPort.ViewId property of...
View ArticleRe: 2016 Views on Sheet
Again, may not be following this correctly but it looks like here:Element element = doc.GetElement(id);View v = element as View;the "id" you're using is the Id of an element with category OST_Sheets...
View ArticleRe: 2016 Views on Sheet
correct the GetAllViewports() is of catagorey OST_Sheets. ViewPort.ViewId is what I need now I just need to get the ViewId from the active sheet. its it possible to use a "get"? I may have to study...
View ArticleRe: 2016 Views on Sheet
GetAllViewports() is called on a sheet and returns ids of view ports. Fromeach viewport you can get the viewId and then retrieve the associated viewon which you can set the name.Your goal is to set a...
View ArticleNavisworks Exporter warnings
I am using the doc.Export(string, string, NavisworksExportOptions) to export NWC files. Everything works just fine. I am sometimes running into a situation where a view that is used to export to NWC...
View ArticleRe: 2016 Views on Sheet
thank you. I think this is it. solution incase anyone else has this problem. if (modifedElem.Category.Id.IntegerValue == (int)BuiltInCategory.OST_Sheets) { foreach (var ids in modifiedIds) {...
View ArticleProgrammatic create framing but Beam doesn't join column
HiI'm trying to create beam and column programmatic from a list of parameters.but after everything was created the beam doesn't join the column automatically.I was trying to use ExtensionUtility to...
View ArticleRe: ContentGeneratorWPF Revit Extensions sample: RVTConverter GetElement return
Don't get me wrong, it is only few days that I wrote the question., but I'm a little curious why no one replies to such crucial question. Did I wrote not understandable question or no one tries REX...
View Article