How can i extent the section area ?
I had read few report.
Most of then were teaching how to create sectionview.
I did not see any instruction for extenting section view area.
Any advise is greatly appreciated.
Modify CropBox of Elevation View
Create Section View Parallel to Wall
http://thebuildingcoder.typepad.com/blog/2012/06/create-section-view-parallel-to-wall.html
Viewport’s CropBox - Revit - Dynamo
https://forum.dynamobim.com/t/viewports-cropbox/10800
Crop Region of Elevation cannot update - Revit - Dynamo
I have created a python script in Dynamo to create elevation and resize the crop region. The crop region is updated but I can see nothing in the extended area.How can I show the element disappeared?
[image]
I use SetCropRegionShape to do the job. Part of my script as below:
eleMarker = ElevationMarker.CreateElevationMarker(doc, viewType.Id, elevationPT, scale)
ele = eleMarker.CreateElevation(doc, doc.ActiveView.Id , 0)
ele1 = eleMarker.CreateElevation(doc, doc.ActiveView.Id , 1)
ele2 = e…
jshial
September 17, 2018, 4:47am
2
You need to expand the CropBox of the section:
Current CropBox : Get its Max & Min point and Transform.
Creating new bounding box by the data collected from current box. But with greater Max.Y and less Min.Y.
Set the new box to the ViewSection.
1 Like