Create Broken View Example (VB.NET)
This example shows how to create and remove a broken view.
'--------------------------------------------------
' Preconditions:
' 1. Specified file to open exists.
' 2. Open the Immediate window.
' 3. Run the macro.
'
' Postconditions:
' 1. Opens the drawing.
' 2. Examine the drawing. Press F5.
' 3. A broken view is created in the
' drawing view.
' 4. Examine the drawing and the
' Immediate window. Press F5.
' 5. The break is removed from the drawing view.
' 6. Examine the drawing.
'
' NOTE: Because this drawing document is used elsewhere,
' do not save changes when closing it.
'--------------------------------------------------
Imports SolidWorks.Interop.sldworks
Imports SolidWorks.Interop.swconst
Imports System.Runtime.InteropServices
Imports System
Imports System.Diagnostics
Partial Class SolidWorksMacro
Public Sub Main()
Dim swModel As ModelDoc2
Dim swDrawingDoc As DrawingDoc
Dim swModelDocExt As ModelDocExtension
Dim swSelectionManager As SelectionMgr
Dim swSelectData As SelectData
Dim swView As View
Dim swBreakLine As BreakLine
Dim fileName As String
Dim status As Boolean
Dim errors As Integer
Dim warnings As Integer
fileName = "C:\Program Files\SolidWorks Corp\SolidWorks\samples\tutorial\api\box.slddrw"
swModel = swApp.OpenDoc6(fileName, swDocumentTypes_e.swDocDRAWING, swOpenDocOptions_e.swOpenDocOptions_Silent, "", errors, warnings)
swDrawingDoc = swModel
swModelDocExt = swModel.Extension
' Activate and select the view to break
status = swDrawingDoc.ActivateView("Drawing View1")
status = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, False, 0, Nothing, 0)
swSelectionManager = swModel.SelectionManager
swSelectData = swSelectionManager.CreateSelectData
swView = swSelectionManager.GetSelectedObject6(1, -1)
Stop
' Examine the drawing; press F5
' Insert the break lines
swBreakLine = swView.InsertBreak(0, -0.0291950859897372, 0.0198236302285804, 1)
' Reset position of break lines
status = swBreakLine.SetPosition(-0.03, 0.05)
swModel.ForceRebuild3 (False)
swDrawingDoc.BreakView()
Debug.Print("Break line: ")
Debug.Print(" Selected: " & swBreakLine.Select(True, Nothing))
Debug.Print(" Style: " & swBreakLine.Style)
Debug.Print(" Orientation: " & swBreakLine.Orientation)
Debug.Print(" Position: " & swBreakLine.GetPosition(0))
Stop
' Examine the drawing and the
' Immediate window; press F5
' Remove the break lines
status = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, False, 0, Nothing, 0)
swDrawingDoc.UnBreakView()
' Examine the drawing
End Sub
''' <summary>
''' The SldWorks swApp variable is pre-assigned for you.
''' </summary>
Public swApp As SldWorks
End Class