<?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>sujet Re: Tableau plan inventor dans Inventor - Forum Français</title>
    <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913825#M5050</link>
    <description>&lt;P&gt;Oui &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley clignant de l'œil" title="Smiley clignant de l'œil" /&gt;&lt;/P&gt;
&lt;P&gt;Voici mes 2 règles iLogic, une pour les iPièces, et une pour les iEnsembles. J'aurais pu n'en faire qu'une mais bon. &lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://forums.autodesk.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley gêné" title="Smiley gêné" /&gt;&lt;/P&gt;
&lt;P&gt;La condition pour qu'elles fonctionnent est d'avoir créé à l'avance une colonne personnalisée qui s'appelle "Masse" comme tu le verras ci-dessous.&lt;/P&gt;
&lt;P&gt;J'avais une difficulté supplémentaire, mes poids sont forcés automatiquement par une autre règle iLogic...&lt;/P&gt;
&lt;P&gt;Donc le code détecte également si il y a une règle externe, et la lance au préalable. Je ne pense pas que tu aies besoin de cela, tu retireras cette partie si tu n'en as pas besoin. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley clignant de l'œil" title="Smiley clignant de l'œil" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;iPièce :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;This rule set the mass to a table custom column&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;The goal is to use it in a drawing table for exemple&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Get the active document.  This assumes it is a part. &lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Dim oPartDoc As PartDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Long&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt; 

&lt;SPAN style="color: #808080;"&gt;'Check if part has external iLogic rule named "Masse galvanisée"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;False&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propertyset&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"{2C540830-0723-455E-A8E2-891722EB4C3E}"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;count&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;InStr&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'iLogic external rule found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN style="color: #808080;"&gt;'No iLogic rule found&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Looking for the column name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; 
    &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartTableColumn&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;) 
    &lt;SPAN style="color: #808080;"&gt;'Compare this column with the input name&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DisplayHeading&lt;/SPAN&gt;) = &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt;) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
        &lt;SPAN style="color: #808080;"&gt;'A matching column was found so exit &lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'No matching column found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'If ColumnIndex = -1, end of the rule&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1 &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"The column "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;" does not exist in the table"&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"iLogic"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Iterate throught the rows&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartTableRow&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt; 
	&lt;SPAN style="color: #808080;"&gt;' Make this the active row so the model will recompute. &lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DefaultRow&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Run the galvanized part external rule&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Assuming this rule is already set on before save&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'To have a correct mass on each iPart member&lt;/SPAN&gt;
		&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;RunExternalRule&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'Assuming no other rules will overwrite the mass property&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;,2) &lt;SPAN style="color: #808080;"&gt;'read updated mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;  
&lt;/PRE&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;iEnsemble :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;This rule set the mass to a table custom column&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;The goal is to use it in a drawing table for exemple&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Get the active document.  This assumes it is a part. &lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Dim oPartDoc As PartDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Long&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt; 

&lt;SPAN style="color: #808080;"&gt;'Check if part has external iLogic rule named "Masse galvanisée"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;False&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propertyset&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"{2C540830-0723-455E-A8E2-891722EB4C3E}"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;count&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;InStr&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'iLogic external rule found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN style="color: #808080;"&gt;'No iLogic rule found&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Looking for the column name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; 
    &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyTableColumn&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;) 
    &lt;SPAN style="color: #808080;"&gt;'Compare this column with the input name&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DisplayHeading&lt;/SPAN&gt;) = &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt;) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
        &lt;SPAN style="color: #808080;"&gt;'A matching column was found so exit &lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'No matching column found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'If ColumnIndex = -1, end of the rule&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1 &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"The column "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;" does not exist in the table"&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"iLogic"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Iterate throught the rows&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyTableRow&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt; 
	&lt;SPAN style="color: #808080;"&gt;' Make this the active row so the model will recompute. &lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DefaultRow&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Run the galvanized part external rule&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Assuming this rule is already set on before save&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'To have a correct mass on each iPart member&lt;/SPAN&gt;
		&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;RunExternalRule&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'Assuming no other rules will overwrite the mass property&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;,2) &lt;SPAN style="color: #808080;"&gt;'read updated mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;  
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2019 08:42:49 GMT</pubDate>
    <dc:creator>ThomasB44</dc:creator>
    <dc:date>2019-07-17T08:42:49Z</dc:date>
    <item>
      <title>Tableau plan inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913629#M5047</link>
      <description>&lt;P&gt;Bonjour,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Je vous sollicite pour résoudre un problème qui me bloque depuis un moment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Voila, je travail en faisant des iPieces sur Inventor et quand j'arrive pour faire la mise en plan j'aimerais avoir un tableau contenant toutes ces informations : &lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;Description, Matière, Longueur &lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;et y compris la &lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;masse&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt; de chaque ligne de ma iPiece. Et que ce tableau se remplisse automatiquement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;La ou je bloque c'est pour insérer la colonne de la &lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;masse&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt; automatiquement. J'ai essayé avec le tableau général, j'arrive à avoir toutes mes lignes et tous mes critères sauf la &lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;masse&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt;. Et quand je passe par liste de pièces j'ai tous mes critères sauf la &lt;STRONG&gt;&lt;EM&gt;&lt;U&gt;Longueur&lt;/U&gt;&lt;/EM&gt;&lt;/STRONG&gt; et je n'ai pas toutes les lignes de ma iPiece.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ci-joint une capture d'écran contenant le tableau général et la liste de pièces venant d'Inventor et le troisième tableau venant d'excel, ce que j'aimerais avoir.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Est-ce que quelqu'un aurait une solution ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Merci d'avance pour vos réponses.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 07:04:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913629#M5047</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-17T07:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Tableau plan inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913738#M5048</link>
      <description>&lt;P&gt;Bonjour @Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;J'ai déjà eu le cas aussi, et à ma connaissance ce n'est pas possible directement. &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-sad.png" alt="Smiley triste" title="Smiley triste" /&gt;&lt;/P&gt;
&lt;P&gt;Il faut saisir manuellement la masse dans une colonne personnalisée de la table de l'iPièce ou de l'iEnsemble...&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://forums.autodesk.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley frustré" title="Smiley frustré" /&gt;&lt;/P&gt;
&lt;P&gt;Tu pourrais aussi utiliser iLogic, pour lier cette propriété de masse, à nouveau dans une colonne personnalisée de la table.&lt;/P&gt;
&lt;P&gt;Ensuite, tu pourras appeler cette colonne comme les autres dans un tableau. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley heureux" title="Smiley heureux" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 07:58:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913738#M5048</guid>
      <dc:creator>ThomasB44</dc:creator>
      <dc:date>2019-07-17T07:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tableau plan inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913802#M5049</link>
      <description>&lt;P&gt;Bonjour &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3343209"&gt;@ThomasB44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Merci pour ta réponse.&lt;/P&gt;&lt;P&gt;C'est ce que je fais déjà mais quand tu as plus de 50 lignes c'est un peu imbuvable à la longue ^^&amp;nbsp;&lt;/P&gt;&lt;P&gt;Saurais-tu comment faire avec iLogic ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 08:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913802#M5049</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-17T08:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Tableau plan inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913825#M5050</link>
      <description>&lt;P&gt;Oui &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley clignant de l'œil" title="Smiley clignant de l'œil" /&gt;&lt;/P&gt;
&lt;P&gt;Voici mes 2 règles iLogic, une pour les iPièces, et une pour les iEnsembles. J'aurais pu n'en faire qu'une mais bon. &lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://forums.autodesk.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley gêné" title="Smiley gêné" /&gt;&lt;/P&gt;
&lt;P&gt;La condition pour qu'elles fonctionnent est d'avoir créé à l'avance une colonne personnalisée qui s'appelle "Masse" comme tu le verras ci-dessous.&lt;/P&gt;
&lt;P&gt;J'avais une difficulté supplémentaire, mes poids sont forcés automatiquement par une autre règle iLogic...&lt;/P&gt;
&lt;P&gt;Donc le code détecte également si il y a une règle externe, et la lance au préalable. Je ne pense pas que tu aies besoin de cela, tu retireras cette partie si tu n'en as pas besoin. &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley clignant de l'œil" title="Smiley clignant de l'œil" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;iPièce :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;This rule set the mass to a table custom column&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;The goal is to use it in a drawing table for exemple&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Get the active document.  This assumes it is a part. &lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Dim oPartDoc As PartDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Long&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iPartFactory&lt;/SPAN&gt; 

&lt;SPAN style="color: #808080;"&gt;'Check if part has external iLogic rule named "Masse galvanisée"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;False&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propertyset&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"{2C540830-0723-455E-A8E2-891722EB4C3E}"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;count&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;InStr&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'iLogic external rule found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN style="color: #808080;"&gt;'No iLogic rule found&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Looking for the column name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; 
    &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartTableColumn&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;) 
    &lt;SPAN style="color: #808080;"&gt;'Compare this column with the input name&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DisplayHeading&lt;/SPAN&gt;) = &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt;) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
        &lt;SPAN style="color: #808080;"&gt;'A matching column was found so exit &lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'No matching column found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'If ColumnIndex = -1, end of the rule&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1 &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"The column "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;" does not exist in the table"&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"iLogic"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Iterate throught the rows&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iPartTableRow&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt; 
	&lt;SPAN style="color: #808080;"&gt;' Make this the active row so the model will recompute. &lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DefaultRow&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Run the galvanized part external rule&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Assuming this rule is already set on before save&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'To have a correct mass on each iPart member&lt;/SPAN&gt;
		&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;RunExternalRule&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'Assuming no other rules will overwrite the mass property&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;,2) &lt;SPAN style="color: #808080;"&gt;'read updated mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;  
&lt;/PRE&gt;
&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;iEnsemble :&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;This rule set the mass to a table custom column&lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'''&lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;The goal is to use it in a drawing table for exemple&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Get the active document.  This assumes it is a part. &lt;/SPAN&gt;
&lt;SPAN style="color: #808080;"&gt;'Dim oPartDoc As PartDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Inventor&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Document&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ActiveDocument&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;, &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Long&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt; 
&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;ComponentDefinition&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;iAssemblyFactory&lt;/SPAN&gt; 

&lt;SPAN style="color: #808080;"&gt;'Check if part has external iLogic rule named "Masse galvanisée"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;False&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;propertyset&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;iLogicE&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oDoc&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;PropertySets&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"{2C540830-0723-455E-A8E2-891722EB4C3E}"&lt;/SPAN&gt;)
	&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;count&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; (&lt;SPAN style="color: #800000;"&gt;InStr&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ilogicE&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;i&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'iLogic external rule found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Catch&lt;/SPAN&gt;
	&lt;SPAN style="color: #808080;"&gt;'No iLogic rule found&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Try&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Looking for the column name&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt; = &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt; = 1 &lt;SPAN style="color: #ff0000;"&gt;To&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt; 
    &lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyTableColumn&lt;/SPAN&gt; 
    &lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableColumns&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;) 
    &lt;SPAN style="color: #808080;"&gt;'Compare this column with the input name&lt;/SPAN&gt;
    &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;oColumn&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DisplayHeading&lt;/SPAN&gt;) = &lt;SPAN style="color: #800000;"&gt;LCase&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnName&lt;/SPAN&gt;) &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt; 
        &lt;SPAN style="color: #808080;"&gt;'A matching column was found so exit &lt;/SPAN&gt;
        &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;j&lt;/SPAN&gt;
		&lt;SPAN style="color: #ff0000;"&gt;Exit&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'No matching column found&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1
    &lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'If ColumnIndex = -1, end of the rule&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt; = -1 &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
&lt;SPAN style="color: #800000;"&gt;MessageBox&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Show&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"The column "&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;"Masse"&lt;/SPAN&gt; &amp;amp; &lt;SPAN style="color: #008080;"&gt;" does not exist in the table"&lt;/SPAN&gt;,&lt;SPAN style="color: #008080;"&gt;"iLogic"&lt;/SPAN&gt;)
&lt;SPAN style="color: #ff0000;"&gt;Return&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;

&lt;SPAN style="color: #808080;"&gt;'Iterate throught the rows&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Dim&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;As&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iAssemblyTableRow&lt;/SPAN&gt; 
&lt;SPAN style="color: #ff0000;"&gt;For&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Each&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;In&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;TableRows&lt;/SPAN&gt; 
	&lt;SPAN style="color: #808080;"&gt;' Make this the active row so the model will recompute. &lt;/SPAN&gt;
	&lt;SPAN style="color: #800000;"&gt;oFactory&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;DefaultRow&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;iLogicFound&lt;/SPAN&gt; = &lt;SPAN style="color: #ff0000;"&gt;True&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;Then&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Run the galvanized part external rule&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'Assuming this rule is already set on before save&lt;/SPAN&gt;
		&lt;SPAN style="color: #808080;"&gt;'To have a correct mass on each iPart member&lt;/SPAN&gt;
		&lt;SPAN style="color: #800080;"&gt;iLogicVb&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;RunExternalRule&lt;/SPAN&gt;(&lt;SPAN style="color: #008080;"&gt;"Masse galvanisée"&lt;/SPAN&gt;)
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;Else&lt;/SPAN&gt; 
		&lt;SPAN style="color: #808080;"&gt;'Assuming no other rules will overwrite the mass property&lt;/SPAN&gt;
		&lt;SPAN style="color: #800000;"&gt;oRow&lt;/SPAN&gt;.&lt;SPAN style="color: #800000;"&gt;Item&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;ColumnIndex&lt;/SPAN&gt;).&lt;SPAN style="color: #800000;"&gt;Value&lt;/SPAN&gt; = &lt;SPAN style="color: #800000;"&gt;Round&lt;/SPAN&gt;(&lt;SPAN style="color: #800080;"&gt;iProperties&lt;/SPAN&gt;.&lt;SPAN style="color: #800080;"&gt;Mass&lt;/SPAN&gt;,2) &lt;SPAN style="color: #808080;"&gt;'read updated mass&lt;/SPAN&gt;
	&lt;SPAN style="color: #ff0000;"&gt;End&lt;/SPAN&gt; &lt;SPAN style="color: #ff0000;"&gt;If&lt;/SPAN&gt;
&lt;SPAN style="color: #ff0000;"&gt;Next&lt;/SPAN&gt;  
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2019 08:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8913825#M5050</guid>
      <dc:creator>ThomasB44</dc:creator>
      <dc:date>2019-07-17T08:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Tableau plan inventor</title>
      <link>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8923773#M5051</link>
      <description>&lt;P&gt;Bonjour @Anonymous&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Si une des réponses résout votre problème ou vous a permis de mieux le comprendre, voulez vous avoir l'amabilité de cliquer sur le bouton "Approuver la solution" &lt;STRONG&gt;en bas de la réponse qui apporte une solution&lt;/STRONG&gt;?&lt;/P&gt;
&lt;H3&gt;&lt;I&gt;Merci de ne pas accepter comme solution le message que vous êtes en train de lire.&lt;/I&gt;&lt;/H3&gt;</description>
      <pubDate>Mon, 22 Jul 2019 19:06:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum-francais/tableau-plan-inventor/m-p/8923773#M5051</guid>
      <dc:creator>patrick.emin</dc:creator>
      <dc:date>2019-07-22T19:06:29Z</dc:date>
    </item>
  </channel>
</rss>

