<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Again an iProperty question in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5527144#M119846</link>
    <description>&lt;P&gt;I have looked in the forum and on internet, but still did not find if this is possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within Windows Explorer, you can read the iProperties of an Inventor file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to do this within an Inventor Add-in and without actually opening the file (for performance/speed).&lt;/P&gt;&lt;P&gt;I know, there is the apprentice option, but this does not work within an Addin and as far as I am right it still opens the file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my code, I select a directory with Inventor files and would like to do something with only the files with some sepcific text within an iProperty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because there can be a lot of files in that directory and I only want to process a few specific files, with the sepcific value in some properties, I would not like to open al files, only to read the iProperties.&lt;/P&gt;&lt;P&gt;Instead I would like to check some iProperties and if the values are what I am looking for, I will open the file and process it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anybody know if this can be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Branko.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Mar 2015 20:36:10 GMT</pubDate>
    <dc:creator>b.graaf</dc:creator>
    <dc:date>2015-03-03T20:36:10Z</dc:date>
    <item>
      <title>Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5527144#M119846</link>
      <description>&lt;P&gt;I have looked in the forum and on internet, but still did not find if this is possible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Within Windows Explorer, you can read the iProperties of an Inventor file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to do this within an Inventor Add-in and without actually opening the file (for performance/speed).&lt;/P&gt;&lt;P&gt;I know, there is the apprentice option, but this does not work within an Addin and as far as I am right it still opens the file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my code, I select a directory with Inventor files and would like to do something with only the files with some sepcific text within an iProperty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because there can be a lot of files in that directory and I only want to process a few specific files, with the sepcific value in some properties, I would not like to open al files, only to read the iProperties.&lt;/P&gt;&lt;P&gt;Instead I would like to check some iProperties and if the values are what I am looking for, I will open the file and process it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anybody know if this can be done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Branko.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2015 20:36:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5527144#M119846</guid>
      <dc:creator>b.graaf</dc:creator>
      <dc:date>2015-03-03T20:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5527603#M119847</link>
      <description>&lt;P&gt;I tried to perform the task that you mentioned, and I think that if you want to access to an iprop of a file, you need to have a connection with that file. I mean that if you want to access to a part, at least you need to open it or you need to have that part in an assembly, otherwise you'll get "READ ONLY" error.&lt;/P&gt;&lt;P&gt;This is the&amp;nbsp;personal experience of a&amp;nbsp;neophyte in ilogic, but a master level google searcher.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 08:13:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5527603#M119847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T08:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5529920#M119848</link>
      <description>&lt;P&gt;The data you want to look at is in the file so it's impossible to read that information without opening the file.&amp;nbsp; Even when you use Explorer to look at iProperties, the file is being opened.&amp;nbsp; The trick is how much of the file is being read and loaded?&amp;nbsp; Inventor files use Microsoft technology that breaks up the data within the file into logical units so only the portions of the file that are needed need to be read into memory.&amp;nbsp; That's what Explorer is using so it's opening the file but only reading the iProperty information from it.&amp;nbsp; The same it true with Apprentice.&amp;nbsp; The initial open, opens the file in a minimal way and then additional data is loaded depending on which API calls are used.&amp;nbsp; If you just call iProperty related API functions then that's all that gets loaded.&amp;nbsp; Apprentice also supports a way of saving just the iProperty portion of a file if you also want to edit iProperties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Inventor is also optimized in this way.&amp;nbsp; In general much more is loaded when you open a file in Inventor because it needs to read graphics data to display the model and also some modeling information to build the browser.&amp;nbsp; However, when you open a document in Inventor there is an option to open it invisibly.&amp;nbsp; If you do this it opens it in a minimal way and using the iProperties portion of the API will cause the iProperty portion of the document to load.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2015 17:39:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5529920#M119848</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-03-05T17:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5530834#M119849</link>
      <description>&lt;P&gt;Consider the performance I think the ApprenticeServer is the best option foryour purpose anyway. If you application is an addin in Inventor you may call an out-of-process application(which use the ApprenticeServer) to do this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2015 10:39:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5530834#M119849</guid>
      <dc:creator>YuhanZhang</dc:creator>
      <dc:date>2015-03-06T10:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531337#M119850</link>
      <description>I asked this same type of question before and never got very far.&lt;BR /&gt;&lt;BR /&gt;Is there some sort of phrasing that'd let you open an IDW invisibly without having it have to track down all it's associated ipt/iam files? I just need to access the titleblock. We've got files (largely due to network issues) that can take 10-15+ minutes to open) and i'd like to try and grab the titleblock info substantially faster than that.&lt;BR /&gt;&lt;BR /&gt;I have added defer updates, but it doesn't seem to help much.</description>
      <pubDate>Fri, 06 Mar 2015 17:14:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531337#M119850</guid>
      <dc:creator>mslosar</dc:creator>
      <dc:date>2015-03-06T17:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531359#M119851</link>
      <description>&lt;P&gt;There probably isn't a way to speed this up very much.&amp;nbsp; Even with the title block there could be fields that are dependent on referenced documents so when a file is opened, Inventor wants to load those dependencies to make sure everything is up to date.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I haven't tried this, but one thing to try would be to have a seperate project that doesn't point to any directories outside of itself and to temporarily copy the drawing into the workspace path for that project, have that project active,&amp;nbsp;and open the drawing.&amp;nbsp; Inventor will fail to find any of the references.&amp;nbsp; You will need to set the SilentOperation property to avoid the dialogs about missing references but I'm guessing it will open much quicker.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2015 17:27:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531359#M119851</guid>
      <dc:creator>ekinsb</dc:creator>
      <dc:date>2015-03-06T17:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Again an iProperty question</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531415#M119852</link>
      <description>Hmm..interesting idea. I'll have to try that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I'm pretty sure you were talking inventor in the general sense, but none our titleblocks refer to linked anything. The closest thing they refer to is the custom properties of the sheet itself.&lt;BR /&gt;&lt;BR /&gt;Just have to figure out where to put an empty project, where I have write access and everyone else can get to it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 06 Mar 2015 18:14:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/again-an-iproperty-question/m-p/5531415#M119852</guid>
      <dc:creator>mslosar</dc:creator>
      <dc:date>2015-03-06T18:14:59Z</dc:date>
    </item>
  </channel>
</rss>

