Hide Table of Contents

Set Table Anchors in Sheet Formats Example (VB.NET)

This example shows how to set a hole table anchor in a sheet format of a drawing.

'----------------------------------------------------------------------------
' Preconditions:
' 1. Verify that the specified drawing to open exists.
' 2. Open and Immediate window.
'
' Postconditions:
' 1. Opens the drawing.
' 2. At Stop, examine the position of the hole table in the drawing.
' 3. Press F5.
' 4. Edits the sheet format.
' 5. Creates a point.
' 6. Sets the position of the hole table's anchor at the new point.
' 7. Examine the new position of the hole table
'    and the Immediate window.
'
' NOTE: If prompted, do not save changes when closing the drawing.
'----------------------------------------------------------------------------

 

Imports SolidWorks.Interop.sldworks
Imports SolidWorks.Interop.swconst
Imports System.Diagnostics
 
 
Partial Class SolidWorksMacro
 
    Public Sub main()
 
        Dim swDrw As DrawingDoc
        Dim swSheet As Sheet
        Dim swModel As ModelDoc2
        Dim swSkPoint As SketchPoint
        Dim oldTableAnchor As TableAnchor
        Dim newTableAnchor As TableAnchor
        Dim vPosition As Object
        Dim filename As String
        Dim errors As Integer
        Dim warnings As Integer
 
        filename = "C:\Users\Public\Documents\SOLIDWORKS\SOLIDWORKS 2018\samples\tutorial\api\SimpleHole.slddrw"
        swDrw = swApp.OpenDoc6(filename, swDocumentTypes_e.swDocDRAWING, swOpenDocOptions_e.swOpenDocOptions_Silent, "", errors, warnings)
 
        If swDrw Is Nothing Then Exit Sub
 
        Stop
 
        swSheet = swDrw.GetCurrentSheet()
        swModel = swDrw
 
        swModel.Extension.SelectByID2(swSheet.GetName(), "SHEET", 0, 0, 0, False, 0, Nothing, 0)
 
        swDrw.EditTemplate
        swModel.EditSketch
 
        swSkPoint = swModel.SketchManager.CreatePoint(0.2, 0.07, 0)
        swSkPoint.Select4(FalseNothing)
 
        ' If an anchor for the hole table already exists, move it to the selected sketch point
        oldTableAnchor = swSheet.TableAnchor(swTableAnnotationType_e.swTableAnnotation_HoleChart)
        newTableAnchor = swSheet.SetAsTableAnchor(swTableAnnotationType_e.swTableAnnotation_HoleChart)
 
        If Not newTableAnchor Is Nothing Then
 
            vPosition = newTableAnchor.Position
            Debug.Print("Table Anchor at (" & vPosition(0) & ", " & vPosition(1) & ")")
 
        End If
 
        swDrw.EditSheet
        swModel.EditSketch
        swModel.ForceRebuild3(True)
 
    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:   Set Table Anchors in Sheet Formats 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) 2018 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.