Complete the code to create a section view by selecting the correct tool.
sectionView = model.[1]()In SolidWorks API, InsertSectionView is the correct method to create a section view.
Complete the code to define the cutting plane for the section view.
cuttingPlane = model.[1](startPoint, endPoint)The method CreateCuttingPlane is used to define the cutting plane for a section view in SolidWorks.
Fix the error in the code to properly set the section view depth.
sectionView.Depth = [1]The depth property expects a numeric value with decimal, so 100.0 is correct.
Fill both blanks to set the section view orientation and display style.
sectionView.Orientation = [1] sectionView.DisplayStyle = [2]
Use swSectionView_Orientation_Aligned for orientation and swSectionView_DisplayStyle_Shaded for display style.
Fill all three blanks to create a section view, set the cutting plane, and update the view.
sectionView = model.[1]() cuttingPlane = model.[2](startPoint, endPoint) sectionView.[3](cuttingPlane)
First, insert the section view with InsertSectionView, then create the cutting plane with CreateCuttingPlane, and finally set the cutting plane on the section view using SetCuttingPlane.
