Hide Table of Contents

Print Drawing and Save as PDF (VBA)

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

 

'---------------------------------------------

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("D:\samples\d1.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) 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.