Show stair details on plan


allopher
 Share

Recommended Posts

Outside of manually creating a text block, is there a way to show the stair details on the floor plan / layout?  Specifically, i want to show tread depth (run), # of risers, riser height (rise).  It would be ideal if these details would auto-update if/when the stair gets updated.

 

Thanks

Link to comment
Share on other sites

Hadn't used macros before. That solved my problem.  Thanks

 

stairDetails = ""
stairDetails << "Risers: " << total_risers.to_s
stairDetails << "\nRise: " << riser_height.round(2).to_s << "\""
stairDetails << "\nRun: " << tread_depth.round(2).to_s << "\""
stairDetails << "\nOverhang: " << tread_overhang.to_s << "\""
stairDetails

  • Upvote 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share