Hide Table of Contents

Cut and Paste Sketch Example (VB.NET)

This example shows how to cut and paste a sketch to and from the Microsoft Windows Clipboard.

' ******************************************************************************
' Preconditions: None
'
' Postconditions:
' 1. Opens a new part document.
' 2. Creates a sketch containing three lines.
' 3. Press F5 to continue.
' 4. Cuts the sketch and places it on the Microsoft
'    Windows Clipboard.
' 5. Press F5 to continue.
' 6. Pastes the sketch from the Clipboard into the part
'    document.
' ******************************************************************************
Imports SolidWorks.Interop.sldworks
Imports SolidWorks.Interop.swconst
Imports System.Runtime.InteropServices
Imports System
 
Partial Class SolidWorksMacro
 
    Dim swModel As ModelDoc2
    Dim swModelDocExt As ModelDocExtension
    Dim swSketchManager As SketchManager
    Dim swSketchSegment As SketchSegment
    Dim status As Boolean
    Dim errors As Integer
 
    Sub Main()
 
        ' Create a new part document
        swModel = swApp.NewDocument("C:\ProgramData\SOLIDWORKS\SOLIDWORKS 2013\templates\Part.prtdot", swDwgPaperSizes_e.swDwgPaperAsize, 0, 0)
        swApp.ActivateDoc3("Part1"False, swRebuildOnActivation_e.swRebuildActiveDoc, errors)
        swModelDocExt = swModel.Extension
 
        ' Create a sketch
        status = swModelDocExt.SelectByID2("Front Plane""PLANE", 0, 0, 0, False, 0, Nothing, swSelectOption_e.swSelectOptionDefault)
        swSketchManager = swModel.SketchManager
        swSketchManager.InsertSketch(True)
        swModel.ClearSelection2(True)
        swSketchSegment = swSketchManager.CreateLine(-0.066124, 0.011735, 0.0#, -0.039675, 0.011735, 0.0#)
        swSketchSegment = swSketchManager.CreateLine(-0.039675, -0.008754, 0.0#, -0.010245, -0.008754, 0.0#)
        swSketchSegment = swSketchManager.CreateLine(-0.010245, -0.029989, 0.0#, 0.022166, -0.029989, 0.0#)
        swModel.ClearSelection2(True)
        swSketchManager.InsertSketch(True)
 
        Stop
        ' Examine the graphics area to
        ' verify that the sketch was created   
 
        ' Press F5 to continue executing the
        ' macro    
 
        ' Select the sketch and place it on the Microsoft Windows Clipboard
        status = swModelDocExt.SelectByID2("Line1@Sketch1""EXTSKETCHSEGMENT", -0.051595524691358, 0.0117347222222222, 0, False, 0, Nothing, 0)
        swModel.EditCut()
 
        Stop
        ' Examine the graphics area to
        ' verify that the sketch was cut 
 
        ' Press F5 to continue executing the
        ' macro    
 
        ' Paste the contents of the Clipboard into the
        ' part document
 
        swModel.Paste()
        ' Examine the graphics area to
        ' verify that the sketch was pasted
        ' into the document
    End Sub
 
    ''' <summary>
    ''' The SldWorks swApp variable is pre-assigned for you.
    ''' </summary>
    Public swApp As SldWorks
 
 
End Class
 


Provide feedback on this topic

SOLIDWORKS welcomes your feedback concerning the presentation, accuracy, and thoroughness of the documentation. Use the form below to send your comments and suggestions about this topic directly to our documentation team. The documentation team cannot answer technical support questions. Click here for information about technical support.

* Required

 
*Email:  
Subject:   Feedback on Help Topics
Page:   Cut and Paste Sketch Example (VB.NET)
*Comment:  
*   I acknowledge I have read and I hereby accept the privacy policy under which my Personal Data will be used by Dassault Systèmes

Print Topic

Select the scope of content to print:

x

We have detected you are using a browser version older than Internet Explorer 7. For optimized display, we suggest upgrading your browser to Internet Explorer 7 or newer.

 Never show this message again
x

Web Help Content Version: API Help (English only) 2015 SP05

To disable Web help from within SOLIDWORKS and use local help instead, click Help > Use SOLIDWORKS Web Help.

To report problems encountered with the Web help interface and search, contact your local support representative. To provide feedback on individual help topics, use the “Feedback on this topic” link on the individual topic page.