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()
Dim drawingDocument1 As Document
Set drawingDocument1 = CATIA.ActiveDocument
Dim selection1 As Selection
Set selection1 = drawingDocument1.Selection
selection1.Search "CATDrwSearch.DrwDimension.DimFakeAttr=TRUE,all"
'Change the color in RED
Set Drwselect = CATIA.ActiveDocument.Selection
Drwselect.VisProperties.SetRealColor 255, 0, 0, 0
End Sub
Language="VBSCRIPT"
Sub CATMain()
Dim drawingDocument1 'As Document
Set drawingDocument1 = CATIA.ActiveDocument
Dim selection1 'As Selection
Set selection1 = drawingDocument1.Selection
selection1.Search "CATDrwSearch.DrwDimension.DimFakeAttr=TRUE,all"
'Change the color in RED
Set Drwselect = CATIA.ActiveDocument.Selection
Drwselect.VisProperties.SetRealColor 255, 0, 0, 0
End Sub