<?xml encoding=”UTF-8″>By Adam Nagy
You can find many settings in the Sheet Metal Defaults dialog, including Use Thickness from Rule.

This can be controlled from the SheetMetalComponentDefinition object’s UseSheetMetalStyleThickness property. Here is a VBA sample:
Sub ChangeUseThicknessFromRule()
Dim doc As PartDocument
Set doc = ThisApplication.ActiveDocument
Dim cd As SheetMetalComponentDefinition
Set cd = doc.ComponentDefinition
cd.UseSheetMetalStyleThickness = False
End Sub

Leave a Reply