Announcements

Starting in December, we will archive content from the community that is 10 years and older. This FAQ provides more information.

DimensionArrows Options

bradeneuropeArthur
Mentor
Mentor

DimensionArrows Options

bradeneuropeArthur
Mentor
Mentor

How to do this with VBA or VB.net!

bradeneuropeArthur_0-1614156649224.png

 

Regards,

Regards,

Arthur Knoors

Autodesk Affiliations:

Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:Drawing List!|Toggle Drawing Sheet!|Workplane Resize!|Drawing View Locker!|Multi Sheet to Mono Sheet!|Drawing Weld Symbols!|Drawing View Label Align!|Open From Balloon!|Model State Lock!
Posts and Ideas:Dimension Component!|Partlist Export!|Derive I-properties!|Vault Prompts Via API!|Vault Handbook/Manual!|Drawing Toggle Sheets!|Vault Defer Update!


! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

0 Likes
Reply
Accepted solutions (1)
307 Views
1 Reply
Reply (1)

bradeneuropeArthur
Mentor
Mentor
Accepted solution

Found:

Public Sub Main()
Dim a As Application
 a = ThisApplication

Dim b As DrawingDocument
 b = a.ActiveDocument

Dim c As Sheet
c = b.ActiveSheet

Dim d As DrawingDimension
d = b.SelectSet.Item(1)

Dim oGeneralDim As GeneralDimension
oGeneralDim = b.SelectSet.Item(1)

oGeneralDim.ArrowheadsInside = False

End Sub

Regards,

Arthur Knoors

Autodesk Affiliations:

Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:Drawing List!|Toggle Drawing Sheet!|Workplane Resize!|Drawing View Locker!|Multi Sheet to Mono Sheet!|Drawing Weld Symbols!|Drawing View Label Align!|Open From Balloon!|Model State Lock!
Posts and Ideas:Dimension Component!|Partlist Export!|Derive I-properties!|Vault Prompts Via API!|Vault Handbook/Manual!|Drawing Toggle Sheets!|Vault Defer Update!


! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

0 Likes