Hide Table of Contents

Print Drawing and Save as PDF Example (VBA)

This example shows how to print a drawing document to your default printer and save it as a PDF file.

'---------------------------------------------
' Preconditions:
' 1. Open public_documents\samples\tutorial\api\2012-sm.slddrw.
' 2. Verify that C:\temp exists.
' 3. Open the Immediate window.
'
' Postconditions:
' 1. Gets the name of your default printer.
' 2. Sets the page orientation to landscape.
' 3. Prints 2012-sm.slddrw to your default printer.
' 4. Saves 2012-sm.slddrw as C:\temp\2012-sm.pdf.
' 5. Examine the Immediate window, your default printer,
'    and C:\temp.
'---------------------------------------------
Option Explicit
Dim swApp As SldWorks.SldWorks
Dim Model As ModelDoc2
Sub main()
    Set swApp = CreateObject("SldWorks.Application")
    Set Model = swApp.ActiveDoc
    Debug.Print Model.Printer    
    Dim ps As PageSetup
    Set ps = Model.PageSetup
    ps.Orientation = 2   ' 1=Portrait  '2 = Landscape    
    Dim pageArray(3) As Long
    pageArray(0) = 1
    pageArray(1) = 1
    pageArray(2) = 3
    pageArray(3) = 3    
    Dim vPageArray As Variant
    vPageArray = pageArray    
    Dim copies As Long
    copies = 1
    Dim collate As Boolean
    collate = True    
    ' Print to default printer
    Model.Extension.PrintOut2 vPageArray, copies, collate, "", ""    
    Dim e As Long
    Dim w As Long    
    ' Save to PDF
    Debug.Print Model.SaveAs4("C:\temp\2012-sm.pdf", 0, 0, e, w)
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:   Print Drawing and Save as PDF 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) 2023 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.