Delete all linear dimensions from the drawing

Delete all linear dimensions from the drawing

manu.marjanen
Advocate Advocate
470 Views
2 Replies
Message 1 of 3

Delete all linear dimensions from the drawing

manu.marjanen
Advocate
Advocate

How do i get removed all linear dimensions from the drawing?

I found a few codes online but did not work for me.

0 Likes
Accepted solutions (1)
471 Views
2 Replies
Replies (2)
Message 2 of 3

bradeneuropeArthur
Mentor
Mentor
Accepted 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:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


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 !


 


EESignature

0 Likes
Message 3 of 3

manu.marjanen
Advocate
Advocate
This works, thanks
0 Likes