Revit .NET API: LevelCreation Class Used by Non-Leaning Pisa Tower
We have programmatically created various Revit elements using the Revit .NET Creation APIs, specifically those New or Create methods. We also created a non-leaning Pisa Tower using all those Revit .NET...
View ArticleRevit .NET API: FloorCreation Class Used by Non-Leaning Pisa Tower
We have programmatically created various Revit elements using the Revit .NET Creation APIs, specifically those New or Create methods. We also created a non-leaning Pisa Tower using all those Revit .NET...
View ArticleRevit .NET API: DoorWindowOpeningCreation Class Used by Non-Leaning Pisa Tower
We have programmatically created various Revit elements using the Revit .NET Creation APIs, specifically those New or Create methods. We also created a non-leaning Pisa Tower using all those Revit .NET...
View ArticleRevit .NET API: ColumnCreation Class Used by Non-Leaning Pisa Tower
We have programmatically created various Revit elements using the Revit .NET Creation APIs, specifically those New or Create methods. We also created a non-leaning Pisa Tower using all those Revit .NET...
View ArticleDoes Revit .NET API Create.NewArc Accept Degree Values?
Recently spotted some code in an official SDK sample:arr.Append(m_revit.Create.NewArc(pnt2, 1.0d, 0.0d, 180.0d, Autodesk.Revit.DB.XYZ.BasisX, Autodesk.Revit.DB.XYZ.BasisY));It seems the intent was to...
View ArticleRevit Family .NET API: Create and Save Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleDocument::LoadFamilySymbol(string filename, string name) Work or NOT?
Recently spotted something weird from a post on web: How to programmatically load a new symbol from an existing Family in a Revit project“You will find that neither of the following overloaded methods...
View ArticleRevit Family .NET API: Create Cylinder in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleRevit Family .NET API: Create Cone in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleRevit Family .NET API: Create Frustum of Cone in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleHow to use the wizard
After the wizard is installed, the Revit .NET Addin template will be added to the Visual Studio IDE.When creating a new project, choose the second Visual C# node from the left pane and the Revit .NET...
View ArticleRevit Family .NET API: Create Ball in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleRevit Family .NET API: Create Half Ball in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleRevit Family .NET API: Create Box in Family Document
Revit .NET has provided the family API for several versions. We did not really address it in the past. In this series of posts, we are going to explore the Revit family .NET API and provide nice sample...
View ArticleWork Or *NOT* - Document::LoadFamilySymbol(string filename, string name, out...
Recently spotted something about the signatures of the LoadFamilySymbol Revit API from a post on web: How to programmatically load a new symbol from an existing Family in a Revit project“You will find...
View ArticleDocument.LoadFamilySymbol Method (String, String, IFamilyLoadOptions,...
We have done a few experiments recently and verified that the two simpler signatures of the Document.LoadFamilySymbol Revit .NET method work just like a charm.The third complex but also powerful...
View ArticleA wizard for Revit .NET Addin
It finally comes out a very user friendly multi-page wizard, various needy coders, and many cool widgets for Revit .NET Addins. They have the following features:Can specify which Revit version and...
View ArticleRevit .NET Document.LoadFamilySymbol and IFamilyLoadOptions
As a matter of fact, we addressed them a bit in an early post, and presented a few references there. In this post, let’s further reveal some secrets about them, none of which has clearly been delivered...
View ArticleRevit .NET Creations API: Create Round Tower
We programmatically created a non-leaning Pisa Tower and an Octagonal Tower before using the various Revit .NET Creation APIs and C#, and provided all these nice help classes and methods in some early...
View ArticleRevit .NET: XYZ and Vector
Revit API provides the XYZ type to represent both points and vectors. It saves a bit space and memory of computers but at the same time may cause a bit confusions to people since they have to...
View Article