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.
Language="VBSCRIPT"
Sub CATMain()
CATIA.StartCommand "Fit All In"
Dim drawingDocument1 As Document
Set drawingDocument1 = CATIA.ActiveDocument
Dim selection1 As Selection
Set selection1 = drawingDocument1.Selection
selection1.Search "Name=Sheet*,all"
CATIA.StartCommand "Activate Sheet"
selection1.Clear
CATIA.StartCommand "Save"
End Sub