12 lines
334 B
VB.net
12 lines
334 B
VB.net
Imports System.ComponentModel
|
|
Imports Xarial.XCad.Documents
|
|
|
|
<Runtime.InteropServices.ComVisible(True)>
|
|
<DisplayName("Event Handlers Example")>
|
|
Public Class AddIn
|
|
Inherits Xarial.XCad.SolidWorks.SwAddInEx
|
|
|
|
Public Overrides Sub OnConnect()
|
|
Application.Documents.RegisterHandler(Of DocHandler)()
|
|
End Sub
|
|
End Class |