Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can any one continue reply n the last reply here
to find WallCurve as Curve or Line ?
Regards
Solved! Go to Solution.
Can any one continue reply n the last reply here
to find WallCurve as Curve or Line ?
Regards
Solved! Go to Solution.
Your question seems to be a lot more basic than the thread you refer to.
In addition, it has been answered many, many times in the past.
The short answer is:
// get the current wall location
LocationCurve wallLocation = myWall.Location
as LocationCurve;
// get the curve and endpoints
XYZ pt1 = wallLocation.Curve.get_EndPoint( 0 );
XYZ pt2 = wallLocation.Curve.get_EndPoint( 1 );
Here is a recent discussion on accessing and adjusting the wall location curve:
Please always search for existing answers before raising a new question.