Complete the code to select the front plane for sketching.
sketchManager.InsertSketchOnPlane([1])The FrontPlane is the correct plane to start a front view sketch in SolidWorks.
Complete the code to select the top plane for a new sketch.
sketchManager.InsertSketchOnPlane([1])The TopPlane is used to create sketches from the top view in SolidWorks.
Fix the error in selecting the right plane for sketching.
sketchManager.InsertSketchOnPlane([1])The correct plane name is RightPlane with exact casing and no spaces.
Fill both blanks to select the origin and start a sketch.
sketchManager.InsertSketchOnPlane([1]) doc.ClearSelection2([2])
Selecting Origin starts the sketch at the origin point. ClearSelection2(False) clears the selection without showing a message.
Fill all three blanks to select the front plane, start a sketch, and clear selection.
sketchManager.InsertSketchOnPlane([1]) sketchManager.InsertSketch() doc.ClearSelection2([2]) sketchManager.AddToDB = [3]
Use FrontPlane to start the sketch on the front plane. ClearSelection2(False) clears selection silently. Setting AddToDB = True adds the sketch to the document database.