Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub main()
Dim swApp As Object
Dim swDoc As Object
Set swApp = Application.SldWorks
Set swDoc = swApp.ActiveDoc
swDoc.CustomInfo2("", "BOX") = "First Line" & vbLf & "Second Line"
End Sub