1 Answers
A:
Sheets in Inventor are named using the Sheet.Name property. By default, they follow a simple pattern:
sheet.Name = "Assembly Overview"
You can delete sheets using the Inventor API or iLogic. Here's a VB.NET-style snippet that safely deletes all sheets except the first:
Dim oDoc As DrawingDocument = ThisApplication.ActiveDocument
Dim oSheets As Sheets = oDoc.Sheets
' Delete all sheets except the first one
Do While oSheets.Count > 1
Dim lastSheet As Sheet = oSheets.Item(oSheets.Count)
lastSheet.Delete()
Loop
Find the Best CAD Software
Explore all products with features, pricing, reviews and more
View All SoftwareHelp the community
Be the First to Answer these questions
Disclaimer
Techjockey’s software industry experts offer advice for educational and informational purposes only. A category or product query or issue posted, created, or compiled by Techjockey is not meant to replace your independent judgment.
20,000+ Software Listed
Best
Price Guaranteed
Free Expert
Consultation
2M+
Happy Customers