Re: How to Export Data to Excel?
Dear Kasung3, How to export data from Revit to Excel is demonstrated by the FireRating and other official Revit SDK samples. How to set up borders etc. has nothing to do with Revit, so you will have to...
View ArticleRe: Family Symbol Insert Error
I am entirely new to Revit and the SDK to be honest. So I hope I can get your code to run. LoadFamilySymbol normally has 4 arguments. At least in 2016. although one of them indeed seems optional. In...
View ArticleRe: Family Symbol Insert Error
I have trouble running your code, canyou paste the full code please?
View ArticleRe: How to Export Data to Excel?
Thank you for your reply.In Roombook extension for revit export and set formattings nicely. How they have done it. Cannot we do it anyway
View ArticleRe: Family Symbol Insert Error
I now get a threading error with your code: An unhandled exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll [Transaction(TransactionMode.Manual)] class CmdFamTest :...
View ArticleRe: How to Export Data to Excel?
Yes, you can absolutely do the same. Please refer to my answer above. I do not care to repeat myself. Best regards, Jeremy
View ArticleRe: F1 Help rediricting me to Autodesk
Dear Moustafa, Absolutely there is an explanation. There is an explanation for almost everything, at least everything in the super-simple mostly predictable world ofdigital computers. However, I do not...
View ArticleRe: PlanarFace with zero edges?
Dear Scott, Thank you for your query. Can you please provide a minimal reproducible for this? http://thebuildingcoder.typepad.com/blog/about-the-author.html#1b I will happily pass it on to the...
View ArticleRe: How to draw List
Are these normal XYZ points, more or less? Do you mean how to draw them in the Revit model? I assume that you have exactly two options: In a planar view: using detail linesIn a 3D view: using model...
View ArticleRe: F1 Help rediricting me to Autodesk
Apologies for unclarity. I have a split button which contains multiple push button. I have assigned each of push button Help URL context. When I click on the arrow of the split button to show all the...
View ArticleRe: Deleting Fill Patterns
Good morning, Please, tell me, I have a problem with deleting FillPatterns in Revit 2015. The deleting is not work. Will It works in Revit 2016? Thank you in advance.
View ArticleRe: Off Topic for Remy!
Hi, I suppose there must be a random factor in the formula. Rudi
View ArticleRe: Deleting Fill Patterns
Yes, apparently that is normal. Don't worry about the language, it is fine! Best regards, Jeremy
View ArticleRe: Increase Floor Size
I create like this-IList<Curve> curve=new List<Curve>(); CurveLoop.Create(curve); Where to define this lines in my code?I posted my code if it possible can you change my code?
View Articledoc.EditFamily() Python
First of all this is probably a noob question, but i've been unable to find it anywhere on the forum; I can't seem to use doc.EditFamily() on a loaded family with succes. the TypeError that keeps...
View ArticleRe: Increase Floor Size
Hi, fill your "curve" variable before using it in the CurveLoop constructor. For getting the Curve objects, there are several postings on the TBC blog.Just type in "floor" in the search textbox....
View ArticleRe: Increase Floor Size
I am trying to fill curve with floor max and min values of x,y,z axix but it showing errror.Plz explain me with the code how to increase the size of floor?
View ArticleRe: Family Symbol Insert Error
smmoes, As Aaron stated, it needs to be in the scope of a transaction. Aaron.Lu wrote:Try this: Transaction transaction = new Transaction(doc, "LoadFamilyTest"); transaction.Start(); try { FamilySymbol...
View ArticleRe: Family Symbol Insert Error
Hi, you could try to get more information about what's going on by adding some sort of FailureHandlingOptions/IFailurePreProcessor to the Transaction.Also, have you tried to use IFamiyLoadOptions ?...
View ArticleRe: finding The floor right under specific beam
Hi, since a floor could contain holes (e.g. for stairs), it would be better to project a series of points following the curve (instead of just using one end point). Revitalizer
View Article