<?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: How to get information about the stairs using Revit API? in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3592382#M80900</link>
    <description>&lt;P&gt;Dear Nitin, the pre-2013 stairs continue to lack access to full location and geometry information. Only post-2013 stairs provide it. Sorry about that.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Aug 2012 10:21:33 GMT</pubDate>
    <dc:creator>jeremytammik</dc:creator>
    <dc:date>2012-08-23T10:21:33Z</dc:date>
    <item>
      <title>How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3420589#M80897</link>
      <description>&lt;P&gt;I have a multiple floor building having stairs in it, but I am unable to get the stairs information using Revit API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Method i am using to get the stairs information:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;----------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;public static void Save(ElementSet stairs)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataSet dsStairs = BALStairs.GetStairs(BOCommon.ProjectId);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; foreach (Element tempStairs in stairs)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DataRow drCurrent = dsStairs.Tables["Stairs"].NewRow();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //get the levels for the stairs.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (tempStairs.Level != null &amp;amp;&amp;amp; BOCommon.ProjectId != -1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BALRoom.GetLevelId(BOCommon.ProjectId, tempStairs.Level.Name);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //inserted on 20 oct&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (BOCommon.ProjectId != -1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["ProjectId"] = BOCommon.ProjectId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (BOCommon.LevelId != -1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["LevelId"] = BOCommon.LevelId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (BOCommon.ProjectId != -1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["ProjectId"] = BOCommon.ProjectId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (BOCommon.LevelId != -1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["LevelId"] = BOCommon.LevelId;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string famName;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //assiging the values of the stairs elements to null.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["TopLevel"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["BaseLevel"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["ActualNumRiser"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["ActualRiserHeight"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["TreadWidth"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["TreadDepth"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["Name"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["TypeName"] = DBNull.Value;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drCurrent["FamilyName"] = DBNull.Value;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But API returns the emply value for stairs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please review and send us the valuable feedback.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2012 05:21:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3420589#M80897</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-04-19T05:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3448167#M80898</link>
      <description>&lt;P&gt;Dear Nitin,&lt;BR /&gt;&lt;BR /&gt;Stairs are not exposed in the Revit API prior to 2013.&lt;BR /&gt;&lt;BR /&gt;Please look at &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2012/03/revit-2013-and-its-api.html#4" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2012/03/revit-2013-and-its-api.html#4&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://thebuildingcoder.typepad.com/blog/2012/04/developer-center-and-sdk-update.html#23" target="_blank"&gt;http://thebuildingcoder.typepad.com/blog/2012/04/developer-center-and-sdk-update.html#23&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Jeremy&lt;BR /&gt;--&lt;BR /&gt;Jeremy Tammik&lt;BR /&gt;Autodesk Developer Network -- &lt;A href="http://www.autodesk.com/joinadn" target="_blank"&gt;http://www.autodesk.com/joinadn&lt;/A&gt;&lt;BR /&gt;The Building Coder -- &lt;A href="http://thebuildingcoder.typepad.com" target="_blank"&gt;http://thebuildingcoder.typepad.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2012 09:18:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3448167#M80898</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2012-05-08T09:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3511552#M80899</link>
      <description>&lt;P&gt;Dear Jeremytammik,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have upgraded our revit API to 2013 from 2011 but still we unable to find the stair location.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help us regarding getting stairs information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2012 10:41:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3511552#M80899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-22T10:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3592382#M80900</link>
      <description>&lt;P&gt;Dear Nitin, the pre-2013 stairs continue to lack access to full location and geometry information. Only post-2013 stairs provide it. Sorry about that.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Aug 2012 10:21:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3592382#M80900</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2012-08-23T10:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3668484#M80901</link>
      <description>&lt;P&gt;Dear &lt;FONT size="-2"&gt;&lt;STRONG&gt;Jeremy Tammik&lt;/STRONG&gt;&lt;/FONT&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have few drawings created in revit 2011 and 2012 having stairs and i am trying to get their information using Revit API 2013.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;I able to get few information like "Name, TypeName, FamilyName, TopLevel, BaseLevel, ActualNumRiser, ActualRiserHeight ,TreadWidth, TreadDepth, TravelDistance" etc.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But actually, what i need is gemoatry information like location points.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any method to get the location information and the rooms associated with stairs???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2012 04:58:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3668484#M80901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-22T04:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3668534#M80902</link>
      <description>&lt;P&gt;Hi nitin.k,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you could calculate location points in by different ways.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First, you could get the BoundingBoxXYZ of your stair. Using this, you could calculate its lower-most center point as your desired location point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second, you could browse your stairs' geometry, also seaching for the bottom-most point. For this, you need to browse all its Solids and Faces.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Third, there is a Sketch assigned to non-FamilyInstance based stairs.&lt;/P&gt;&lt;P&gt;You can get it this way:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://thebuildingcoder.typepad.com/blog/2011/11/undocumented-elementid-relationships.html"&gt;http://thebuildingcoder.typepad.com/blog/2011/11/undocumented-elementid-relationships.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having calculated a proper point, you could use Document.GetRoomAtPoint(XYZ) method to find a proper room, and you could compare the elevations of your Levels to find the one which fits your location point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Revitalizer&lt;/P&gt;</description>
      <pubDate>Mon, 22 Oct 2012 07:07:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3668534#M80902</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2012-10-22T07:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673412#M80903</link>
      <description>&lt;P&gt;Hi Revitalizer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the information!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But by using BoundingBoxXYZ we can get only the Max and Min point of stairs Bounding Box. But, what i want is the location point of landing or floor at the top and bottom of each stairway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From BoundingBoxXYZ how can we get these location points?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also when i try to find the room name using document.GetRoomAtPoint() it returns Null value. What should be the reason regarding it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 11:16:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673412#M80903</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-25T11:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673434#M80904</link>
      <description>&lt;P&gt;Hi nitin.k,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GetRoomAtPoint needs a point that is inside the room's volume, and it may be useful to make sure that the point you test is not located directly at the volume border (because of tolerances; point may be calculated as *slightly* outside, falsely).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;LocationPoint from BoundingBoxXYZ:&lt;/P&gt;&lt;P&gt;What I meant was that you could calculate the point that is in the lower center of the bounding box, meaning on the bottom.&lt;/P&gt;&lt;P&gt;Add one meter to its z value (this making sure to be inside the *3D body* of the room) to calculate a point that you can use to GetRoomAtPoint().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To calculate the landing and floor location points, you could analyze the stair's geometry, meaning that you need to interprete it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rudolf&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 11:41:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673434#M80904</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2012-10-25T11:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673610#M80905</link>
      <description>&lt;P&gt;Is it possible to analyze the stair's geometry for the Revit file created prior to 2013?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And is it posible to find the stairs geomatry information if the stairs are created by Sketch and not by component?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 12:55:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673610#M80905</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-25T12:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673628#M80906</link>
      <description>&lt;P&gt;Hi nitin.k,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the comments section of the TBC posting I mentioned above, I wrote:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"But even if we cannot *modify* a stair this way, we can get *more* information than we would get if we just read the stair's parameters or properties.&lt;BR /&gt;&lt;BR /&gt;For example, using the longest CurveArray in the Sketch.Profile of a stair, we can combine it with the number of steps and in the result, we can get the 3D data of each step's front side.&lt;BR /&gt;The Curves in the profile won't give us the correct z data because the sketch is just a projection, but using the stair's height and number of steps, we can get the z distances for each step.&lt;BR /&gt;The steps' 3D LocationCurves."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, of course you only can get "stupid" geometry, just lines, faces and solids.&lt;/P&gt;&lt;P&gt;If you combine it with the parameter values, you could *calculate* the information you want.&lt;/P&gt;&lt;P&gt;I must admit that there is no common approach for each type of stairs, but the point is how to obtain information *at all*.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Revitalizer/Rudolf&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2012 13:03:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3673628#M80906</guid>
      <dc:creator>Revitalizer</dc:creator>
      <dc:date>2012-10-25T13:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get information about the stairs using Revit API?</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3686400#M80907</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have converted my stairs from "Stair by sketch" to "stairs by component". Now i am able to find the stairs components.&lt;/P&gt;&lt;P&gt;I am able to find the stairs landing. But still location becomes null for stairs and also for landing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the location point of the landing also the exact point from where the stairs started and ground level to the ends at the top level. Is it possible to find the exact position?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2012 09:12:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/how-to-get-information-about-the-stairs-using-revit-api/m-p/3686400#M80907</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-11-05T09:12:37Z</dc:date>
    </item>
  </channel>
</rss>

