AutoCAD Architecture Forum
Welcome to Autodesk’s AutoCAD Architecture Forums. Share your knowledge, ask questions, and explore popular AutoCAD Architecture topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Stair Direction Arrow Text

3 REPLIES 3
Reply
Message 1 of 4
Anonymous
507 Views, 3 Replies

Stair Direction Arrow Text

How can I get the direction arrows in the stairs to say "UP" or "DN"? Is there a setting I am missing or do I just need to add the text manually?
3 REPLIES 3
Message 2 of 4
Anonymous
in reply to: Anonymous

just thought i would throw a bump on this to see if anyone had ideas
Message 3 of 4
mcohalloran
in reply to: Anonymous

Has anyone come up with a solution for this?  Thanks!

Message 4 of 4
dbroad
in reply to: Anonymous

Text that displays the stair orientation isn't an available display option in the stair styles.  So you are left with the choice of adding it manually as text objects or creating a tag that accesses the stair object's verticalorientation property and displays it as "UP" or "DN" or whatever.   In order for the tag to work properly, you would need to:

1)Add the stairobjects property set, preferably by transferrring it from schedulestyles.dwg.

2)Add a handle property to that set.

3)Add a formula property with a meaningful name, like Orientation.

4)Add the property set to the stair.

5)Create a tag that displays the Orientation Property.

6)Add the tag to the stair object.

 

That's a lot of work and the main advantage would be that the relationship between the stair oriention and tag would be maintained. But how often will that ever change?  In case you really want to go through the effort of tagging, the formula property would need to be coded something like this:

 

 

 

On Error Resume Next
Set app = GetObject(, "AutoCAD.Application")
Set doc = app.ActiveDocument
Set StairObject = doc.HandleToObject("[Handle]")
orient = StairObject.VerticalOrientation
If orient = 1 Then RESULT = "UP"  Else RESULT = "DN"

 

 

StairOrientationTag Screencast

Architect, Registered NC, VA, SC, & GA.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost