<?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 How to identify the Attribute Insertion point in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490791#M35010</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have list of the blocks and each block contain multiple attributes and i made function to&amp;nbsp;modified attribute insertion point using&amp;nbsp;C#.net. But&amp;nbsp;i want to identify&amp;nbsp;the attribute insertion point on AutoCAD screen, could you please help me some one because i am poor in AutoCAD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
    <pubDate>Wed, 10 Aug 2016 09:30:28 GMT</pubDate>
    <dc:creator>manohar2375</dc:creator>
    <dc:date>2016-08-10T09:30:28Z</dc:date>
    <item>
      <title>How to identify the Attribute Insertion point</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490791#M35010</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have list of the blocks and each block contain multiple attributes and i made function to&amp;nbsp;modified attribute insertion point using&amp;nbsp;C#.net. But&amp;nbsp;i want to identify&amp;nbsp;the attribute insertion point on AutoCAD screen, could you please help me some one because i am poor in AutoCAD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 09:30:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490791#M35010</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2016-08-10T09:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the Attribute Insertion point</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490908#M35011</link>
      <description>&lt;PRE&gt;&lt;BR /&gt;// Use of 'AlignmentPoint' or 'Position' depends on type of attachmentPoint.
// BaseLeft uses 'Position', all others use 'AlignmentPoint'
if (attRef.Justify == AttachmentPoint.BaseLeft)
attRef.Position = newAttPos;
else
attRef.AlignmentPoint = newAttPos;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 10:23:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490908#M35011</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2016-08-10T10:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the Attribute Insertion point</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490925#M35012</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done already program for modify attribute insertion point, and its working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My issue is in AutoCAD screen, how can i identify the attribute insertion point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example: once we select&amp;nbsp;block on AutoCAD screen then block will be highlighted with insertion point like that is there any way to identify attribute inserting point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2016 10:34:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6490925#M35012</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2016-08-10T10:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the Attribute Insertion point</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6491153#M35013</link>
      <description>&lt;P&gt;You will need to first determine the attribute reference's .&lt;FONT color="#0000FF"&gt;Justify&lt;/FONT&gt; property value. If this&amp;nbsp;value == AttachmentPoint.BaseLeft then the attribute 'insertion point' is found like so:&lt;/P&gt;&lt;PRE&gt;Point3D insertionPt = attRef.Position;&lt;/PRE&gt;&lt;P&gt;If the value &amp;lt;&amp;gt;&lt;SPAN&gt;AttachmentPoint.BaseLeft then:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Point3D insertionPt = attRef.AlignmentPoint&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Aug 2016 12:14:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-identify-the-attribute-insertion-point/m-p/6491153#M35013</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2016-08-10T12:14:23Z</dc:date>
    </item>
  </channel>
</rss>

