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 Points_Projection_Mode()
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
oView.GenerativeBehavior.PointsProjectionMode = catPointsProjectionModeOn
Set oView2 = oView.GenerativeBehavior
oView2.Update
End Sub
Sub Points_Projection_Mode()
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
oView.GenerativeBehavior.PointsProjectionMode = catPointsProjectionModeOn
Set oView2 = oView.GenerativeBehavior
oView2.Update
End Sub