Author Topic: Inventor Plot Stamp?  (Read 2447 times)

0 Members and 1 Guest are viewing this topic.

Bethrine

  • Guest
Inventor Plot Stamp?
« on: April 04, 2014, 03:49:17 PM »
Does it exist?

How do I turn it on / adjust it? ...if it exists that is.  :laugh:

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Inventor Plot Stamp?
« Reply #1 on: April 04, 2014, 04:13:22 PM »
From what I just found it must be done as iLogic:

Quote
Here is the iLogic rule we use (also attached as a TXT file):
 
Dim odrawdoc As DrawingDocument
odrawdoc = ThisApplication.ActiveDocument
customPropertySet = odrawdoc.PropertySets.Item("Inventor User Defined Properties")
Try
      prop = customPropertySet.Item("iLogicPrintDate")
Catch
      customPropertySet.Add("", "iLogicPrintDate")
End Try
Try
Dim PlotDate As Date
PlotDate = Now

iProperties.Value("Custom", "iLogicPrintDate") = PlotDate
Catch
End Try
InventorVb.DocumentUpdate()
 This code creates a custom iProperty called iLogicPrintDate, then reads the current date and stores it to that iProperty.
 
We have some text in our drawing border that displays the values of several properties: drawing creator, iLogicPrintDate, and file path and name.  This is what it looks like:
Be your Best


Michael Farrell
http://primeservicesglobal.com/

Bethrine

  • Guest
Re: Inventor Plot Stamp?
« Reply #2 on: April 04, 2014, 05:41:42 PM »
Next question: What is iLogic?  :?

Found it, how / where do you learn it? I am not seeing this in the CAD Associates degree classes but maybe I am wrong?

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Inventor Plot Stamp?
« Reply #3 on: April 04, 2014, 06:02:04 PM »
Typically offered as an advanced class by the local reseller.

Or check the bottom of this page:

https://grabcad.com/questions/how-does-ilogic-based-rules-work-in-autodesk-inventor-part-deisgn
Be your Best


Michael Farrell
http://primeservicesglobal.com/

Bethrine

  • Guest
Re: Inventor Plot Stamp?
« Reply #4 on: April 04, 2014, 06:07:14 PM »
Sweet! Thanks!