Hide Table of Contents

Automate Add-in's Undo Commands Example (VBA)

This example shows how to automate an add-in's undo commands.

 

Module macro1

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

'

' Preconditions: Model document is open.

'

' Postconditions: None

'

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

Option Explicit

 

Dim swApp As Object

Dim swModel  As SldWorks.ModelDoc2

Dim swModExt As SldWorks.ModelDocExtension

Dim Retval As Boolean

Dim name As String

Dim i As Long

 

Sub main()

 

    Set swApp = Application.SldWorks

    Set swModel = swApp.ActiveDoc

    Set swModExt = swModel.Extension()

 

For i = 1 To 2

    Dim swUndoObj1 As swUndoApiHdlr1

    Set swUndoObj1 = New swUndoApiHdlr1

    swUndoObj1.a = i

    name = "AddinUndo : " & i

    Retval = swModExt.SetApiUndoObject(swUndoObj1, name)

    

Next i

    

For i = 1 To 2

    Dim swUndoObj2 As swUndoApiHdlr2

    Set swUndoObj2 = New swUndoApiHdlr2

    swUndoObj2.a = i

    name = "AddinUndoReset : " & i

    Retval = swModExt.SetApiUndoObject(swUndoObj2, name)

Next i

 

End Sub

 

Back to top

 

Class module swUndoApiHdlr1

Option Explicit

 

Implements SwUndoAPIHandler

Public a As Long

 

Private Sub SwUndoAPIHandler_DoUndo()

    MsgBox "Add-in's undo called " & vbCrLf & "Undo object count : " + Str(a)

End Sub

 

Private Sub SwUndoAPIHandler_UndoReSet()

    MsgBox ("Add-in's undo list reset")

End Sub

Back to top

Class module swUndoApiHdlr2

Option Explicit

 

Implements SwUndoAPIHandler

Public a As Long

 

Private Sub SwUndoAPIHandler_DoUndo()

    MsgBox "Undo called " & vbCrLf & "Undo count : " + Str(a)

End Sub

 

Private Sub SwUndoAPIHandler_UndoReSet()

    MsgBox ("Undo reset called ")

End Sub

Back to top



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:   Automate Add-in's Undo Commands 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) 2019 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.