Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do i get removed all linear dimensions from the drawing?
I found a few codes online but did not work for me.
Solved! Go to Solution.
How do i get removed all linear dimensions from the drawing?
I found a few codes online but did not work for me.
Solved! Go to Solution.
Try this:
Dim a As Inventor.DrawingDocument = ThisDrawing.Document
Dim b As Inventor.Sheet = a.ActiveSheet
For Each c As Inventor.DrawingDimension In b.DrawingDimensions
If c.Type = Inventor.ObjectTypeEnum.kLinearGeneralDimensionObject Then
c.Delete
End If
Next
Regards,
Arthur Knoors
Autodesk Affiliations & Links:
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:
My 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 !