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 CATMain()
Set drawingDocument1 = CATIA.ActiveDocument
Set Sheets = drawingDocument1.Sheets
Set ActiveSheet = Sheets.ActiveSheet
Set Views = ActiveSheet.Views
For i = 3 To Views.Count
If i <> 2 Then
Set View = Views.Item(i)
Set Texts = View.Texts
For j = 1 To Texts.Count
Set Text = Texts.Item(j)
Text.AnchorPosition = 28
Next
End If
Next
End Sub