<?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 Re: Problem when insert and move a block references in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692253#M4586</link>
    <description>&lt;P&gt;1- I have tried this solution before, problem is the same.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;insertPoint.Point3d() : Point3d() is a function that converts Point2d to Point3d.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Apr 2024 09:36:46 GMT</pubDate>
    <dc:creator>jamalkhah</dc:creator>
    <dc:date>2024-04-07T09:36:46Z</dc:date>
    <item>
      <title>Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12691727#M4584</link>
      <description>&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;I want to insert a block reference to my drawing. Sometimes I have a problem with moving. When the block reference is inserted, the base point&amp;nbsp;has moved away from the lines and lines will show in the wrong position.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="photo_2024-04-07_01-13-28.jpg" style="width: 532px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346694i6400384C4C2EE167/image-size/large?v=v2&amp;amp;px=999" role="button" title="photo_2024-04-07_01-13-28.jpg" alt="photo_2024-04-07_01-13-28.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The piece of code I used is:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;            using (DocumentLock dlock = doc.LockDocument())
            {
                using (Transaction tr = db.TransactionManager.StartTransaction())
                {
                    #region bt
                    // Open the Block table for read
                    BlockTable bt;
                    bt = tr.GetObject(db.BlockTableId, OpenMode.ForRead) as BlockTable;

                    ObjectId blockId = ObjectId.Null;

                    if (bt.Has(blockName))
                        blockId = bt[blockName];
                    else
                        return;
                    #endregion

                    // Focus on drawing
                    Autodesk.AutoCAD.Internal.Utils.SetFocusToDwgView();

                    using (BlockReference br = new BlockReference(Point3d.Origin, blockId))
                    {
                        #region Move BlockReference

                        Point3d p3d = Point3d.Origin;
                        Vector3d vector3D = p3d.GetVectorTo(insertPoint.Point3d());

                        br.TransformBy(Matrix3d.Displacement(vector3D));

                        #endregion
...
}&lt;/LI-CODE&gt;&lt;P&gt;This problem only happens sometimes and this code works correctly most of the time.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I fix it?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Apr 2024 21:45:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12691727#M4584</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-06T21:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12691929#M4585</link>
      <description>&lt;P&gt;Why not just set the initial insertion point of the block reference to the point that you are trying to transform it to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are also missing something relevant. I do not know what this is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;insertPoint.Point3d()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 02:12:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12691929#M4585</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-04-07T02:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692253#M4586</link>
      <description>&lt;P&gt;1- I have tried this solution before, problem is the same.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;insertPoint.Point3d() : Point3d() is a function that converts Point2d to Point3d.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 09:36:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692253#M4586</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T09:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692261#M4587</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Update:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Recently, I found the reason for this problem in my tests. Before using this method, if I use the "Paste to original coordinates" option in AutoCAD when pasting something, the base point of this block reference will be moved by the distance of the copied item from the point (0, 0, 0). But this does not always happen, only sometimes!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What happens when using "Paste to original coordinates" that affects the result of my method?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 09:41:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692261#M4587</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T09:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692340#M4588</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;It seems your issue is not due to the code you posted but to the way the block definition (BlockTableRecord) was created. Try to open the block in the block Editor and see the position of entities about the origin.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 11:44:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692340#M4588</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T11:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692379#M4589</link>
      <description>&lt;P&gt;In the Block Editor, I have a Basepoint. When the code works properly, the Basepoint is in the right position, but when this problem occurs, the entities will move to another position.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Before, when I did not use basepoints, I used to draw the entities at the origin. When the problem arose, the entities were moved together from the origin.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 12:35:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692379#M4589</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T12:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692490#M4590</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14498346"&gt;@jamalkhah&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This problem only happens sometimes and this code works correctly most of the time.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Isn't there a coordinate system issue?&lt;/P&gt;
&lt;P&gt;Is the current UCS different from WCS when the problem happens and equal to WCS "most of the time"?&lt;/P&gt;
&lt;P&gt;A good practice is to always transform coordinates of points got by Editor.GetPoint into WCS coordinates.&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;var promptPointResult = ed.GetPoint("\nSpecify insertion point: ");
if (promptPointResult.Status != PromptStatus.OK) return;
var insertionPoint = promptPointResult.Value.TransformBy(ed.CurrentUserCoordinateSystem);&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 07 Apr 2024 14:57:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692490#M4590</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T14:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692594#M4591</link>
      <description>&lt;P&gt;Thanks, Gile&lt;/P&gt;&lt;P&gt;I will try this method but it doesn't seem to be the solution. The problem is that the block reference is manipulated after the execution of my code and the entities are moved!&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 16:51:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692594#M4591</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T16:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692597#M4592</link>
      <description>&lt;P&gt;Sorry, I do not understand what you mean with: "the block reference is manipulated after the execution of my code and the entities are moved"&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 16:54:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692597#M4592</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T16:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692609#M4593</link>
      <description>&lt;P&gt;You should post a relevant example with a block insterted with your code at a simple point (e.g. 10, 10, 0) and another inserted directly (without code) which reflect what you expected..&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:08:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692609#M4593</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T17:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692616#M4594</link>
      <description>&lt;P&gt;I explained it in my first post. Entities moved from their original position to another position (It can be seen in the block editor).&lt;/P&gt;&lt;P&gt;This move usually occurs after the use of the "Paste to original coordinate" option and the moving vector is equal to the size of the displacement vector of the copied entities from the origin.&lt;/P&gt;&lt;P&gt;For example, if I copy a polyline to my drawing to its original coordinates, and its original coordinates are (100, 200, 0), and after that, execute my code, the entities inside my block reference, will move by the vector (100, 200, 0).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did I get my point across?&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:11:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692616#M4594</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T17:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692632#M4595</link>
      <description>&lt;P&gt;So, my first reply (&lt;A href="https://forums.autodesk.com/t5/net/problem-when-insert-and-move-a-block-references/m-p/12692340/highlight/true#M81495" target="_blank" rel="noopener"&gt;#5&lt;/A&gt;) was relevant.&lt;/P&gt;
&lt;P&gt;When you create the block definition (BlockTableRecord), you have to displace all "copied entities" using a vector from the specified insertion point to origin.&lt;/P&gt;
&lt;P&gt;You can see this topic with an example of custom command which mimics the native BLOCK command to create a block definition from selected entities and an insertion point.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:24:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692632#M4595</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T17:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692645#M4596</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;You should post a relevant example with a block insterted with your code at a simple point (e.g. 10, 10, 0) and another inserted directly (without code) which reflect what you expected..&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What I expect:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1.png" style="width: 417px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346806i3119006CE3925B26/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;What happens after the code is executed:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2.png" style="width: 409px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346807iB6C1DCEE30545599/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.png" alt="2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In both images, the blue point is the block reference basepoint. In the second image, the code has placed the block reference in the correct place, but the entities have moved away from the base point.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:33:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692645#M4596</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T17:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692656#M4597</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;You should post a relevant example with a block insterted with your code at a simple point (e.g. 10, 10, 0) and another inserted directly (without code) which reflect what you expected..&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Block editor - Before code execution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1_.png" style="width: 486px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346810iA65142A6E26EDBAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="1_.png" alt="1_.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Block editor - Aftercode execution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2_.png" style="width: 487px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346811iDE77D618F7C3CB6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2_.png" alt="2_.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 17:42:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692656#M4597</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T17:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692720#M4598</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14498346"&gt;@jamalkhah&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You should post a relevant example with a block insterted with your code at a simple point (e.g. 10, 10, 0) and another inserted directly (without code) which reflect what you expected..&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Block editor - Before code execution:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1_.png" style="width: 486px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346810iA65142A6E26EDBAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="1_.png" alt="1_.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Block editor - Aftercode execution:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2_.png" style="width: 487px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1346811iDE77D618F7C3CB6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2_.png" alt="2_.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What you see in the block editor is the block definition (BlockTableRecord) and the code you posted just insert a block reference (BlockReference). So the changes in the block definition cannot be due to code you posted.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 19:09:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692720#M4598</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2024-04-07T19:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692791#M4599</link>
      <description>&lt;P&gt;What you show is the result of redefining the block to have a different base point. That has nothing to do with code that inserts the block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unintended changes to the base point of a block could be the result of defining or redefining the block with a current UCS that is not the WCS.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 20:37:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692791#M4599</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-04-07T20:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692882#M4600</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;What you see in the block editor is the block definition (BlockTableRecord) and the code you posted just insert a block reference (BlockReference). So the changes in the block definition cannot be due to code you posted.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Could this be due to copying some entities from another source in the drawing?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 22:30:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12692882#M4600</guid>
      <dc:creator>jamalkhah</dc:creator>
      <dc:date>2024-04-07T22:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem when insert and move a block references</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12693079#M4601</link>
      <description>&lt;P&gt;Entities that are copied from another drawing will have the same coordinates as the original entities had, unless they were transformed after being copied.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 02:10:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-when-insert-and-move-a-block-references/m-p/12693079#M4601</guid>
      <dc:creator>ActivistInvestor</dc:creator>
      <dc:date>2024-04-08T02:10:54Z</dc:date>
    </item>
  </channel>
</rss>

