3D
EXPERIENCE |
3DSwym
CATIA Buildings & Infrastructure
EN
English
Français
Deutsch
Español
Èeština
Italiano
日本語
한국어
Português Brasileiro
Pусский
简体中文
繁體中文
Polski
|
Log in
Communities
CATIA Buildings & Infrastructure
Modify Sketch Constraint Value
Modify Sketch Constraint Value
SX
SX
2024-10-29
CATIA Buildings & Infrastructure
Sub CATMain()
For j = 1 To CATIA.ActiveEditor.Selection.Count
Dim aa As Constraint
Set aa = CATIA.ActiveEditor.Selection.Item(j).Value
If InStr(aa.Name, "Radius") <> 0 Then
aa.Dimension.Value = 500
End If
Next
End Sub