<?xml version="1.0" encoding="windows-1250" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>CAD F&#243;rum : Inventor - výběr entity</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : CAD programov&#225;n&#237; : Inventor - výběr entity]]></description>
  <pubDate>Wed, 15 Apr 2026 16:44:39 +0000</pubDate>
  <lastBuildDate>Wed, 28 Jun 2023 12:48:24 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum/RSS_post_feed.asp?TID=34443</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD F&#243;rum]]></title>
   <url>https://www.cadforum.cz/forum/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum/</link>
  </image>
  <item>
   <title><![CDATA[Inventor - výběr entity : D&#283;kuji vyzkou&#353;&#237;m ]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128603&amp;title=inventor-vyber-entity#128603</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=99">pavelstyl</a><br /><strong>Předmět:</strong> 34443<br /><strong>Zasláno:</strong> 28.čer.2023 v 12:48<br /><br />Děkuji vyzkouším]]>
   </description>
   <pubDate>Wed, 28 Jun 2023 12:48:24 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128603&amp;title=inventor-vyber-entity#128603</guid>
  </item> 
  <item>
   <title><![CDATA[Inventor - výběr entity : Jednoduch&#225; cesta asi nebude, ale...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128602&amp;title=inventor-vyber-entity#128602</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 34443<br /><strong>Zasláno:</strong> 28.čer.2023 v 12:29<br /><br />Jednoduchá cesta asi nebude, ale mělo by zafungovat získání souřadnice kliknutí přes "myšovou" událost:<div><br></div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div><span style="white-space: normal;"><span style="white-space:pre">	</span>Dim oIntEv As InteractionEvents = ThisApplication.CommandManager.CreateInteractionEvents</span></div><div><span style="white-space: normal;"><span style="white-space:pre">	</span>Dim oMouseEv As MouseEvents = oIntEv.MouseEvents</span></div><div><span style="white-space: normal;"><span style="white-space:pre">	</span>AddHandler oMouseEv.OnMouseClick&nbsp; ,AddressOf oMouseEv_OnMouseClick&nbsp;</span></div><div><span style="white-space: normal;"><span style="white-space:pre">	</span>oIntEv.Start</span></div><div><br></div><div>Sub oMouseEv_OnMouseClick(oMBtn As MouseButtonEnum, oShiftState As ShiftStateEnum, oMPos As Inventor.Point, oViewPos As Point2d, oView As Inventor.View)</div><div>&nbsp; &nbsp;MsgBox("Model Position = " &amp; oMPos.X &amp; " cm x " &amp; oMPos.Y &amp; " cm (from model origin)" &amp; vbCrLf &amp; _</div><div>&nbsp; "View Position = " &amp; oViewPos.X &amp; " x " &amp; oViewPos.Y &amp; " (from top left corner of view)", , "MOUSE POSITION")</div><div>End Sub</div></div><div></pre></td></tr></table></div><div><br></div><div><br></div><div>A poté výběr pomocí souřadnice bodu:</div><div><table width="99%"><tr><td><pre class="BBcode">oSheet.FindUsingPoint(PointPos)</pre></td></tr></table></div><div><br></div>]]>
   </description>
   <pubDate>Wed, 28 Jun 2023 12:29:39 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128602&amp;title=inventor-vyber-entity#128602</guid>
  </item> 
  <item>
   <title><![CDATA[Inventor - výběr entity : Dobr&#253; den,ve v&#253;krese ve skice...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128601&amp;title=inventor-vyber-entity#128601</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=99">pavelstyl</a><br /><strong>Předmět:</strong> 34443<br /><strong>Zasláno:</strong> 28.čer.2023 v 08:45<br /><br />Dobrý den,<div>&nbsp;ve výkrese ve skice potřebuji po uživateli, aby vybrat entitu (čáru).</div><div>To umím udělat pomocí&nbsp;</div><div><div><table width="99%"><tr><td><pre class="BBcode">Dim Curve As DrawingCurveSegment&nbsp; = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingCurveSegmentFilter, "Select first line to align")</pre></td></tr></table></div></div><div><br></div><div>Dá se také zjistit poloha bodu, kam uživatel ukázal?</div><div>Potřebuji vybrat jak entitu, tak i znát souřadnice bodu výběru.</div><div>AutoCAD na to má lispovskou funkci (entsel), která vrátí bod výběru i entitu.</div><div>Je něco takového i v API Inventoru?</div><div><br></div><div>Děkuji</div><div>Pavel Štyl</div>]]>
   </description>
   <pubDate>Wed, 28 Jun 2023 08:45:00 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34443&amp;PID=128601&amp;title=inventor-vyber-entity#128601</guid>
  </item> 
 </channel>
</rss>