Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Renaming sheets in a multi-sheet IDW....

5 REPLIES 5
SOLVED
Reply
Message 1 of 6
andrew.cox
1748 Views, 5 Replies

Renaming sheets in a multi-sheet IDW....

Is there any easy way to have sheet name automatically pull the "description" iProperty from the part that is on the sheet?  It can be very handy in a multi-sheet drawing for each sheet to have a descripive name in the browser, but the only way to do this (that I know of) is to manually change it.

 

Thanks,

Andrew

5 REPLIES 5
Message 2 of 6

Hi andrew.cox,

 

Here's an iLogic rule to do this. Note that description might not write to the sheet name correctly if it has characters such as commas in it.

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

 

Dim oSheets As Sheets 
oSheets = ThisDoc.Document.sheets
Dim oSheet As Sheet
For Each oSheet In oSheets
	oSheet.activate
	Dim oDrawingView As DrawingView 
	oDrawingView = oSheet.DrawingViews(1)
	oModelName = oDrawingView.ReferencedDocumentDescriptor.ReferencedDocument.DisplayName
	oDesc = iProperties.Value(oModelName, "Project", "Description")
	oSheet.Name =  oDesc 
Next

 

Message 3 of 6

Hi Curtis,

 

Thanks for this info!  However, I have not even used iLogic, so I don't know what to do with this.  Any chance you could point me towards a good tutorial, or provide me instructions yourself?

 

Cheers,

Andrew

Message 4 of 6

Hi andrew.cox,

 

This should cover it:

http://inventortrenches.blogspot.com/2012/01/creating-basic-ilogic-rule-with-event.html

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

Message 5 of 6

Hi Curtis,

 

I'm having some trouble with the code you supplied.  When I enter in into the "rule", I get this error....

 

Picture - 06 -  Oct. 05, 2012.jpg

 

I cut-and-paste the code exactly as you had it in your previous post.  Any thoughts?

 

Andrew

Message 6 of 6

Hi andrew.cox,

 

Most likely there is an issue with a line wrap due to this forums formatting, or something like that. Attached is the rule in a text file, you can copy and paste from it.

 

If you see the same results post back.

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

 

 

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report