<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Intro to Revit API - Create Wall from Location Line OR XYZ data in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317179#M79202</link>
    <description>&lt;P&gt;Hello Joe,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the CreateWallsUnderBeams sample from the SDK as a starting point.&lt;/P&gt;&lt;P&gt;I got an error with the code&lt;SPAN&gt;&amp;nbsp;you gave me&amp;nbsp;&lt;/SPAN&gt;when running it from a 3D View. I assumed that it was because of the argument:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;m_selectedView.GenLevel.Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And instead I used:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;            StringBuilder levelInformation = new StringBuilder();
            FilteredElementCollector collector = new FilteredElementCollector(project.Document);
            ICollection&amp;lt;Element&amp;gt; collection = collector.OfClass(typeof(Level)).ToElements();

            // Get the level which will be used in create method
            m_level = collector.OfClass(typeof(Level)).FirstElement() as Level;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Which apparently worked on the modified SDK sample.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But now I am modifying it so that instead of selecting beams and creating walls under each, I am selecting Model Lines to accomplish the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;                Transaction t = new Transaction(project, Guid.NewGuid().GetHashCode().ToString());
                t.Start();
                Wall createdWall = Wall.Create(project, l1.GeometryCurve, m_selectedWallType.Id, m_level.Id, 10, 0, true, m_isStructural);&lt;/PRE&gt;&lt;P&gt;Where "l1" is each ModelLine in an ArrayList.&lt;/P&gt;&lt;P&gt;While debugging, I get a "null" value for l1.GeometryCurve, even though the ArrayList shows having, in this case, 21 values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I wrong to use "GeometryCurve" from the ModelLine as an argument for Wall.Create?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks Joe,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jul 2013 19:37:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-07-02T19:37:46Z</dc:date>
    <item>
      <title>Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4310893#M79200</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to Revit's API.&lt;/P&gt;&lt;P&gt;I have a small problem to solve, which is to draw the walls of a room from either:&lt;/P&gt;&lt;P&gt;a) XYZ coordinates for the ends of the wall centerlines (from a txt or csv file)&lt;/P&gt;&lt;P&gt;b) existing sketched lines in the Revit document&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There will probably be more requirements later, such as the nesting of windows and doors, but I'm ignoring that for now, and just want to create the walls. It would also prompt the user to select a level to set the walls on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are there any examples available online?&lt;/P&gt;&lt;P&gt;Or is this something that is easy to write and a generous soul here is willing to help me out with?&lt;/P&gt;&lt;P&gt;If I keep this simple, I think it can be a nice intro to Revit's API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2013 22:58:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4310893#M79200</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-26T22:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4316340#M79201</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Revit walls can simply created by Wall.Create(Curve curve, WallType type) method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code snippet to create a wall.&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 11px; line-height: 14px;"&gt;Transaction act = new Transaction(m_myDocument.Document);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;act.Start(Guid.NewGuid().GetHashCode().ToString());&lt;BR /&gt; Wall wall = Wall.Create(m_myDocument.Document, baseline, m_selectedWallType.Id,&lt;BR /&gt; m_selectedView.GenLevel.Id, 20, 0, false, false);&lt;BR /&gt; act.Commit()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use Form and add level list control to it. And uses can select target level through the form.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As you are new to Revit API,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have the My First Revit Plug-in tutorial:&amp;nbsp;&lt;A href="http://usa.autodesk.com/adsk/servlet/index?siteID=123112&amp;amp;id=16777469" target="_blank"&gt;http://usa.autodesk.com/adsk/servlet/index?siteID=123112&amp;amp;id=16777469&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And some DevTV video for beginner in this page:&amp;nbsp;&lt;A href="http://usa.autodesk.com/adsk/servlet/index?id=2484975&amp;amp;siteID=123112" target="_blank"&gt;http://usa.autodesk.com/adsk/servlet/index?id=2484975&amp;amp;siteID=123112&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept as Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2013 09:08:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4316340#M79201</guid>
      <dc:creator>Joe.Ye</dc:creator>
      <dc:date>2013-07-02T09:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317179#M79202</link>
      <description>&lt;P&gt;Hello Joe,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using the CreateWallsUnderBeams sample from the SDK as a starting point.&lt;/P&gt;&lt;P&gt;I got an error with the code&lt;SPAN&gt;&amp;nbsp;you gave me&amp;nbsp;&lt;/SPAN&gt;when running it from a 3D View. I assumed that it was because of the argument:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;m_selectedView.GenLevel.Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And instead I used:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;            StringBuilder levelInformation = new StringBuilder();
            FilteredElementCollector collector = new FilteredElementCollector(project.Document);
            ICollection&amp;lt;Element&amp;gt; collection = collector.OfClass(typeof(Level)).ToElements();

            // Get the level which will be used in create method
            m_level = collector.OfClass(typeof(Level)).FirstElement() as Level;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Which apparently worked on the modified SDK sample.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But now I am modifying it so that instead of selecting beams and creating walls under each, I am selecting Model Lines to accomplish the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;                Transaction t = new Transaction(project, Guid.NewGuid().GetHashCode().ToString());
                t.Start();
                Wall createdWall = Wall.Create(project, l1.GeometryCurve, m_selectedWallType.Id, m_level.Id, 10, 0, true, m_isStructural);&lt;/PRE&gt;&lt;P&gt;Where "l1" is each ModelLine in an ArrayList.&lt;/P&gt;&lt;P&gt;While debugging, I get a "null" value for l1.GeometryCurve, even though the ArrayList shows having, in this case, 21 values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I wrong to use "GeometryCurve" from the ModelLine as an argument for Wall.Create?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks Joe,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2013 19:37:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317179#M79202</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-02T19:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317203#M79203</link>
      <description>&lt;P&gt;And here's a the detailed error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autodesk.Revit.Exceptions.ArgumentNullException was unhandled by user code&lt;BR /&gt;Message=Null argument&lt;BR /&gt;Parameter name: curve&lt;BR /&gt;Source=RevitAPI&lt;BR /&gt;ParamName=curve&lt;BR /&gt;StackTrace:&lt;BR /&gt;at Autodesk.Revit.DB.Wall.Create(Document document, Curve curve, ElementId wallTypeId, ElementId levelId, Double height, Double offset, Boolean flip, Boolean structural)&lt;BR /&gt;at Revit.SDK.Samples.CreateWallsUnderBeams.CS.CreateWallsUnderBeams.BeginCreate(Document project) in C:\Revit 2013 SDK\Samples\CreateWallsUnderBeams\CS\CreateWallsUnderBeams.cs:line 210&lt;BR /&gt;at Revit.SDK.Samples.CreateWallsUnderBeams.CS.CreateWallsUnderBeams.Execute(ExternalCommandData commandData, String&amp;amp; message, ElementSet elements) in C:\Revit 2013 SDK\Samples\CreateWallsUnderBeams\CS\CreateWallsUnderBeams.cs:line 163&lt;BR /&gt;at apiManagedExecuteCommand(AString* assemblyName, AString* className, AString* vendorDescription, MFCApp* pMFCApp, DBView* pDBView, AString* message, Set&amp;lt;ElementId\,std::less&amp;lt;ElementId&amp;gt;\,tnallc&amp;lt;ElementId&amp;gt; &amp;gt;* ids, Map&amp;lt;AString\,AString\,std::less&amp;lt;AString&amp;gt;\,tnallc&amp;lt;AString&amp;gt; &amp;gt;* data, AString* exceptionName, AString* exceptionMessage)&lt;BR /&gt;InnerException:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Any help is much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2013 20:11:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317203#M79203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-02T20:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317826#M79204</link>
      <description>&lt;P&gt;Hi Santiago,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, have you checked the argument that you are passing in?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe it really is null?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From a model curve, you can easily obtain the geometry in some way, either through GeometryCurve or other means.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That geometry you can easily pass in to the wall creation method.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just check that it is not null in between.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you aware of the RevitLookup tool?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, read about it on the blog, install it, and use it before doing anything else whatsoever.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will enable you to look at the contents of the GeometryCurve property interactively thorugh the user interface.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might even be interested in exploring the use of the Revit Ruby or Python shells. They enable completely interactive use and exploration of all aspects and functionality of the Revit API, individual statements, call by call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2013 08:07:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4317826#M79204</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2013-07-03T08:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4318933#M79205</link>
      <description>&lt;P&gt;Thanks Jeremy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The curve argument (wallLine) shows as not being null (see image attached below).&lt;/P&gt;&lt;P&gt;I also tried using a CurveArray to ensure that the object being passed as a curve argument was actually a curve.&lt;/P&gt;&lt;P&gt;'wallLine'&amp;nbsp;appears in Locals as an Autodesk.Revit.DB.Line, which is supposed to inherit the Curve class.&lt;/P&gt;&lt;P&gt;This threw the same exception (attached image) that modelLine.GeometryCurve threw.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, why will Wall.Create not accept my curve (wallLine) object?&lt;/P&gt;&lt;P&gt;Or am I reading the ArgumentNullException incorrectly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="error_capture 2.gif" border="0" src="https://forums.autodesk.com/t5/image/serverpage/image-id/55485iF37DC77ACA916862/image-size/original?v=mpbl-1&amp;amp;px=-1" align="center" alt="error_capture 2.gif" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2013 19:27:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4318933#M79205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-03T19:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4319291#M79206</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Santiago&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what you described, l1 just cannot return a valid curve. This is strange.&lt;/P&gt;
&lt;P&gt;ModelLine should be able to return a valid curve by GeometryCurve property.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems that l1 may by a null object. Would you please debug and check if l1 is null or invalid object?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2013 06:16:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4319291#M79206</guid>
      <dc:creator>Joe.Ye</dc:creator>
      <dc:date>2013-07-04T06:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4321776#M79207</link>
      <description>&lt;P&gt;Hello -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Revit 2013, there was a bug with the Wall.Create() method.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try doing the following instead:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Wall createdWall = Wall.Create(project, l1.GeometryCurve.&lt;STRONG&gt;Clone()&lt;/STRONG&gt;, m_selectedWallType.Id, m_level.Id, 10, 0, true, m_isStructural);&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jul 2013 02:21:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4321776#M79207</guid>
      <dc:creator>conoves</dc:creator>
      <dc:date>2013-07-08T02:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Intro to Revit API - Create Wall from Location Line OR XYZ data</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4322881#M79208</link>
      <description>&lt;P&gt;Super! Yes, I am using Revit 2013. Problem solved.&lt;/P&gt;&lt;P&gt;Thanks Scott!&lt;/P&gt;&lt;P&gt;Next time I'll remember to mention the revit version I'm working with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2013 17:31:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/intro-to-revit-api-create-wall-from-location-line-or-xyz-data/m-p/4322881#M79208</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-08T17:31:33Z</dc:date>
    </item>
  </channel>
</rss>

