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 View_Box()
Dim DrwDocument As DrawingDocument
Set DrwDocument = CATIA.ActiveDocument
Dim oDrawing As DrawingDocument
Set oDrawing = CATIA.ActiveDocument
Dim oSheets As DrawingSheets
Set oSheets = oDrawing.Sheets
Dim oSheet As DrawingSheet
Set oSheet = oSheets.Item(1)
Dim oView As DrawingView
Set oView = oSheet.Views.Item(3)
oView.Activate
Dim oView2
Set oView2 = oView
Dim oXY(4) '
oView2.Size oXY
Xmin = oXY(0)
Xmax = oXY(1)
Ymin = oXY(2)
Ymax = oXY(3)
End Sub