Hide Table of Contents

Insert Hatch Example (VBA)

This example shows how to insert a hatch on a closed sketch in a drawing. The following image demonstrates the example.

 

 

'------------------------------------------------------------
' Preconditions:
' 1. Open a drawing containing a closed sketch similar to the
'    sketch shown.
' 2. Select an arc.
' 3. Change the name of the arc in this code to match name of
'    of the arc selected in step 2 (e.g., record selecting the
'    arc, save the recording to a new macro, open and inspect
'    that macro, and make note of the name of the selected arc).
'
' Postconditions:
' 1. Inserts and scales the hatch.
' 2. Examine the drawing.
'------------------------------------------------------------
Option Explicit


Dim swApp As SldWorks.SldWorks
Dim Part As SldWorks.ModelDoc2
Dim SelMgr As SldWorks.SelectionMgr
Dim boolstatus As Boolean


Sub main()

Set swApp = Application.SldWorks


Set Part = swApp.ActiveDoc
Set SelMgr = Part.SelectionManager
boolstatus = Part.Extension.SelectByID2("Arc29", "SKETCHSEGMENT", 0.08421725979537, 0.08635799134766, 0, False, 0, Nothing, 0)


Dim selSkSeg As SldWorks.SketchSegment
Dim selSk As SldWorks.Sketch
Set selSkSeg = SelMgr.GetSelectedObject6(1, -1)

Set selSk = selSkSeg.GetSketch


Part.InsertHatchedFace


Dim hatchArr As Variant
Dim vobj As Variant
Dim skHatch As SldWorks.SketchHatch


hatchArr = selSk.GetSketchHatches
For Each vobj In hatchArr
    Set skHatch = vobj
    skHatch.Scale2 = 4
Next vobj


End Sub



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:   Insert Hatch Example (VBA)
*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) 2017 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.