Re: Why DimensionType Class don't have SetUnitsFormatOption ?
The answer is qouted directly from the API Guide:"The FormatOptions class contains settings that control how to format numbers with units as strings. It contains those settings that are typically...
View ArticleRe: Direct Modification of KeynoteTable
I am struggling to actually delete a key from the keytable. I am unable to get the schema needed. When I use the method GetEntitySchemaGuids on the KeyTable, the count on the list of guids returned is...
View ArticleRe: Revit "My First Plugin" lesson 1 error message
Hi, I believe your manifest file is not correct, because it's saying "Lab1PlaceGroup is not found"; as Bobby pointed out,you should specify full class name like this:...
View ArticleRe: Obtain Sync With Central Number Via API?
Dear David Blackburn,Please accept our sincerer apology for the delay! We had a backlog in the queue these days.Revit API doesn't provide such API except events...
View ArticleRe: Select point from form
Please try this In the Form: public partial class CreateTextNoteForm : Form { ExternalEvent m_ex = null; public CreateTextNoteForm(UIApplication app, ExternalEvent exEvent) { InitializeComponent();...
View ArticleRe: Direct Modification of KeynoteTable
Please provide me with sample of your code so I can help.
View ArticleRe: PostCommand
I have already accepted your solution(marked as answer) along with a Kudo.Thanks once again.
View ArticleRe: load and place a familyobject => System.NullReferenceException
You have to use the FamilySymbol.Activate Method first before placing it.
View ArticleRe: PlaceGroup gets rotated
If there is a Transform applied to the origional Group then you have to apply it to the new group.Use the GetTransform() and the SetTransform() methods to know what is going wrong.
View ArticleRe: Camera zoom and orientation compatibility between 2D and 3D views
please provide a sample revit project and your sample code so I can help.Note also that you have to save the orientation first in order to be able to apply it again.
View ArticleRe: Direct Modification of KeynoteTable
Thanks. I am just using the revit addin template. This is in Command.cs { [Transaction(TransactionMode.Manual)] public class Command : IExternalCommand { public Result Execute(ExternalCommandData...
View ArticleWhere is the 2015 DB link plug-in.
I have a 2014 Revit project dug up and revived. And that project utilized the Revit DB link 2014 plug-in. I am currently on 2015 platform and am trying to find the 2015 DB link plug-in. All web...
View ArticleRe: Edit Type of isolated slab with reference to Structural Column Type
Here is the code after some modification public Result Execute(ExternalCommandData cmdData, ref string msg, ElementSet elemSet) { _cachedCmdData = cmdData; try { FilteredElementCollector column = new...
View ArticleRe: Increase Length of Structural framing
Please provide a sample Revit project and a sample code so I can help.
View ArticleRe: Revit plugin to convert Rhino to Revit
Use Rhynamo with Dynamo:https://bitbucket.org/caseinc/rhynamo
View ArticleRe: vertical NewOpening gives error "Can't change plane of Opening Cut Sket
Hi, For vertical opening, you should use shaft opening API NewOpening(Level bottomLevel, Level topLevel, CurveArray profile) instead:Following code works well against your floor:// find two levels for...
View ArticleRe: vertical NewOpening gives error "Can't change plane of Opening Cut Sket
Hi Jim, Thanks for your response. But the statement "slope floor cannot allow vertical opening" is not true. Vertical openings can be created in the UI for sloped floors and sloped roofs as shown in...
View ArticleRe: Geometry returns no reference for familyinstance
Hi scottThank you for great stuff.But i select the columns in the wall i cant get referencesHow can i solve this?Thanks in advance.. http://screencast.com/t/YePS33ty4
View ArticleRe: vertical NewOpening gives error "Can't change plane of Opening Cut Sket
hi, Thanks a lot for your correct and sharing! I need to refresh my memory!!I already sent email to engineering team to confirm this, we'll keep you updated immediately on any progress.Thanks again!
View Article