Message 1 of 1
How do we get the (x,y,z)cordinates for stairs, ramps ?
Not applicable
10-20-2009
05:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do we get the (x,y,z)cordinates for stairs, ramps ?
using revit application with c#
I used the below code and it give me the location curve of ramps,stairs as null:
Location LOC = tempRamps.Location as Location;
LocationCurve Locrve = tempRamps.Location as LocationCurve;
XYZ p1 = Locrve.Curve.get_EndPoint(0);
Where tempRamps represent for Ramp.
using revit application with c#
I used the below code and it give me the location curve of ramps,stairs as null:
Location LOC = tempRamps.Location as Location;
LocationCurve Locrve = tempRamps.Location as LocationCurve;
XYZ p1 = Locrve.Curve.get_EndPoint(0);
Where tempRamps represent for Ramp.