Over 1.118.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
The new Beam calculator, Spirograph generator and Regression curves in the Converters section.
New AutoCAD 2027 commands and sys.variables
CAD tip # 10266:
Question
A
The property called "Standard" is a standard iProperty. But it is not accessible through the Properties dialog. If you need to edit it directly, you can use the following VBA macro:
Sub SetStandard()
Dim oProp As Inventor.Property
Set oProp = ThisApplication.ActiveDocument.PropertySets("{32853F0F-3444-11D1-9E93-0060B03C1CA6}")("Standard")
oProp.Value = InputBox("Enter the value of the new standard", , oProp.Value)
End Sub
Copy this code to your Inventor VBA project and run the macro. A window with the current value of the Standard of the active document will be displayed; overwrite it and click OK to update the value in the document.
Inventor
31.3.2015
13890×
this tip shared by ARKANCE experts applies to: Inventor ·
![CAD Forum - ARKANCE Community - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

