allopher Posted June 11, 2018 Share Posted June 11, 2018 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 More sharing options...
Joe_Carrick Posted June 11, 2018 Share Posted June 11, 2018 I have custom macros for Stairs - exactly what you are asking for. Link to comment Share on other sites More sharing options...
allopher Posted June 12, 2018 Author Share Posted June 12, 2018 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 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now