<?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 Jigging text block along selected polyline. in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403298#M24266</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My requirement is, I will select a polyline on drawing and enter some text, on OK click I have to move the text along the polyline. I am able to jig along polyline and place at selected point along the polyline. But my issue is, the text block rotation is not according to the polyline angle when moving along it. Could you please help me in this.&lt;/P&gt;&lt;P&gt;I used the below link for reference to jig along the polyline.&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive-cad-with-code.blogspot.com/2012/03/moving-entity-along-curve.html" target="_blank"&gt;https://drive-cad-with-code.blogspot.com/2012/03/moving-entity-along-curve.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your suggestions&lt;/P&gt;&lt;P&gt;Tejaswini.&lt;/P&gt;</description>
    <pubDate>Thu, 15 Nov 2018 07:07:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-11-15T07:07:36Z</dc:date>
    <item>
      <title>Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403298#M24266</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My requirement is, I will select a polyline on drawing and enter some text, on OK click I have to move the text along the polyline. I am able to jig along polyline and place at selected point along the polyline. But my issue is, the text block rotation is not according to the polyline angle when moving along it. Could you please help me in this.&lt;/P&gt;&lt;P&gt;I used the below link for reference to jig along the polyline.&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive-cad-with-code.blogspot.com/2012/03/moving-entity-along-curve.html" target="_blank"&gt;https://drive-cad-with-code.blogspot.com/2012/03/moving-entity-along-curve.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your suggestions&lt;/P&gt;&lt;P&gt;Tejaswini.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 07:07:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403298#M24266</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-15T07:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403388#M24267</link>
      <description>&lt;P&gt;You should get some inspiration from this one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        [CommandMethod("JIGTEXT")]
        public static void JigTextAlonPpolyline()
        {
            var doc = Application.DocumentManager.MdiActiveDocument;
            var db = doc.Database;
            var ed = doc.Editor;

            var entityOptions = new PromptEntityOptions("\nSelect polyline: ");
            entityOptions.SetRejectMessage("\nmust be a Polyline.");
            entityOptions.AddAllowedClass(typeof(Polyline), true);
            var entityResult = ed.GetEntity(entityOptions);
            if (entityResult.Status != PromptStatus.OK)
                return;

            var stringOptions = new PromptStringOptions("\nEnter a text: ");
            stringOptions.AllowSpaces = true;
            var stringResult = ed.GetString(stringOptions);
            if (stringResult.Status != PromptStatus.OK)
                return;

            using (var tr = db.TransactionManager.StartTransaction())
            {
                var pline = (Polyline)tr.GetObject(entityResult.ObjectId, OpenMode.ForRead);
                using (var text = new DBText())
                {
                    text.SetDatabaseDefaults();
                    text.Normal = pline.Normal;
                    text.Justify = AttachmentPoint.BottomCenter;
                    text.AlignmentPoint = Point3d.Origin;
                    text.TextString = stringResult.StringResult;

                    var jig = new TextJig(text, pline);
                    var result = ed.Drag(jig);
                    if (result.Status == PromptStatus.OK)
                    {
                        var currentSpace = (BlockTableRecord)tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite);
                        currentSpace.AppendEntity(text);
                        tr.AddNewlyCreatedDBObject(text, true);
                    }
                }
                    tr.Commit();
            }
        }

        class TextJig : EntityJig
        {
            DBText text;
            Polyline pline;
            Point3d dragPt;
            Plane plane;
            Database db;

            public TextJig(DBText text, Polyline pline) : base(text)
            {
                this.text = text;
                this.pline = pline;
                plane = new Plane(Point3d.Origin, pline.Normal);
                db = HostApplicationServices.WorkingDatabase;
            }

            protected override SamplerStatus Sampler(JigPrompts prompts)
            {
                var options = new JigPromptPointOptions("\nSpecicfy insertion point: ");
                options.UserInputControls =
                    UserInputControls.Accept3dCoordinates |
                    UserInputControls.UseBasePointElevation;
                var result = prompts.AcquirePoint(options);
                if (result.Value.IsEqualTo(dragPt))
                    return SamplerStatus.NoChange;
                dragPt = result.Value;
                return SamplerStatus.OK;
            }

            protected override bool Update()
            {
                var point = pline.GetClosestPointTo(dragPt, false);
                var angle = pline.GetFirstDerivative(point).AngleOnPlane(plane);
                text.AlignmentPoint = point;
                text.Rotation = angle;
                text.AdjustAlignment(db);
                return true;
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Nov 2018 08:05:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403388#M24267</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-15T08:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403754#M24268</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your solution, But my requirement is moving a block having attribute value as text. I have to move my block along the selected polyline, aligning with angle of polyline. and the block should jig below the polyline, not above the polyline. And I have both the polyline and block entities present with me.&lt;/P&gt;&lt;P&gt;Please help me in this regard.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Tejaswini.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 10:55:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403754#M24268</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-15T10:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403827#M24269</link>
      <description>&lt;P&gt;This is NOT your first requirement.&lt;/P&gt;
&lt;P&gt;In the first maeesage you said: "I will select a polyline on drawing and enter some text, on OK click I have to move the text along the polyline."&lt;/P&gt;
&lt;P&gt;By respect to those who try to help you, please do not change the requirements in the same thread.&lt;/P&gt;
&lt;P&gt;From the upper code and &lt;A href="https://forums.autodesk.com/t5/net/jigging-between-two-points/m-p/8401058/highlight/true#M60741" target="_blank"&gt;this one&lt;/A&gt; in another post of yours, you should be able to achieve what you want.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 11:36:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8403827#M24269</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-15T11:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404029#M24270</link>
      <description>&lt;P&gt;Try this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        [CommandMethod("JIGBLOCK")]
        public static void JigBlockAlongPolyline()
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            var db = doc.Database;
            var ed = doc.Editor;

            var entityOptions = new PromptEntityOptions("\nSelect polyline: ");
            entityOptions.SetRejectMessage("\nmust be a Polyline.");
            entityOptions.AddAllowedClass(typeof(Polyline), true);
            var entityResult = ed.GetEntity(entityOptions);
            if (entityResult.Status != PromptStatus.OK)
                return;

            var stringOptions = new PromptStringOptions("\nEnter the block name: ");
            var stringResult = ed.GetString(stringOptions);
            if (stringResult.Status != PromptStatus.OK)
                return;
            var blockName = stringResult.StringResult;

            using (var tr = db.TransactionManager.StartTransaction())
            {
                var bt = (BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead);
                if (!bt.Has(blockName))
                    return;
                var pline = (Polyline)tr.GetObject(entityResult.ObjectId, OpenMode.ForRead);
                var curSpace = (BlockTableRecord)tr.GetObject(db.CurrentSpaceId, OpenMode.ForWrite);

                var btrId = bt[blockName];
                var br = new BlockReference(Point3d.Origin, btrId);
                curSpace.AppendEntity(br);
                tr.AddNewlyCreatedDBObject(br, true);

                var btr = (BlockTableRecord)tr.GetObject(btrId, OpenMode.ForRead);
                var attInfos = new Dictionary&amp;lt;AttributeReference, TextInfo&amp;gt;();
                foreach (ObjectId id in btr)
                {
                    if (id.ObjectClass.Name == "AcDbAttributeDefinition")
                    {
                        var attDef = (AttributeDefinition)tr.GetObject(id, OpenMode.ForRead);
                        AttributeReference attRef = new AttributeReference();
                        attRef.SetAttributeFromBlock(attDef, br.BlockTransform);
                        br.AttributeCollection.AppendAttribute(attRef);
                        tr.AddNewlyCreatedDBObject(attRef, true);
                        attInfos.Add(attRef, new TextInfo(attDef));
                    }
                }

                var jig = new BlockJig(br, pline, attInfos);
                var pr = ed.Drag(jig);
                if (pr.Status != PromptStatus.OK)
                    br.Erase();
                tr.Commit();
            }
        }

        class TextInfo
        {
            public Point3d Position { get; }

            public Point3d Alignment { get; }

            public bool IsAligned { get; }

            public double Rotation { get; }

            public TextInfo(DBText text)
            {
                Position = text.Position;
                IsAligned = text.Justify != AttachmentPoint.BaseLeft;
                Alignment = text.AlignmentPoint;
                Rotation = text.Rotation;
            }
        }

        class BlockJig : EntityJig
        {
            BlockReference br;
            Polyline pline;
            Point3d dragPt;
            Plane plane;
            Dictionary&amp;lt;AttributeReference, TextInfo&amp;gt; attInfos;

            public BlockJig(BlockReference br, Polyline pline, Dictionary&amp;lt;AttributeReference, TextInfo&amp;gt; attInfos) : base(br)
            {
                this.br = br;
                this.pline = pline;
                this.attInfos = attInfos;
                plane = new Plane(Point3d.Origin, pline.Normal);
            }

            protected override SamplerStatus Sampler(JigPrompts prompts)
            {
                var options = new JigPromptPointOptions("\nSpecicfy insertion point: ");
                options.UserInputControls =
                    UserInputControls.Accept3dCoordinates |
                    UserInputControls.UseBasePointElevation;
                var result = prompts.AcquirePoint(options);
                if (result.Value.IsEqualTo(dragPt))
                    return SamplerStatus.NoChange;
                dragPt = result.Value;
                return SamplerStatus.OK;
            }

            protected override bool Update()
            {
                var point = pline.GetClosestPointTo(dragPt, false);
                var angle = pline.GetFirstDerivative(point).AngleOnPlane(plane);
                br.Position = point;
                br.Rotation = angle;
                foreach (var entry in attInfos)
                {
                    var att = entry.Key;
                    var info = entry.Value;
                    att.Position = info.Position.TransformBy(br.BlockTransform);
                    att.Rotation = info.Rotation + angle;
                    if (info.IsAligned)
                    {
                        att.AlignmentPoint = info.Alignment.TransformBy(br.BlockTransform);
                        att.AdjustAlignment(br.Database);
                    }
                    if (att.IsMTextAttribute)
                    {
                        att.UpdateMTextAttribute();
                    }
                }
                return true;
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Nov 2018 13:23:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404029#M24270</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-15T13:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404198#M24271</link>
      <description>I am able to jig my block along my polyline, claculate the rotation&lt;BR /&gt;also...from the references you gave..but the only thing left is when i&lt;BR /&gt;click to leave the moving block it is taking the rotation. While i am&lt;BR /&gt;dragging along polyline it is only in horizontal Direction..i am using draw&lt;BR /&gt;jig for my requirements...it would be helpful if you suggest something&lt;BR /&gt;regarding this.. previous post also i mentioned text block where my text is&lt;BR /&gt;an attribute to block.&lt;BR /&gt;Thanks in advance for any inputs.</description>
      <pubDate>Thu, 15 Nov 2018 14:29:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404198#M24271</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-15T14:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404754#M24272</link>
      <description>&lt;P&gt;Did you try the last code I provided?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="iframe-container"&gt;&lt;IFRAME width="640" height="590" src="https://screencast.autodesk.com/Embed/Timeline/80bae978-b261-49af-88ab-cac1b4861d36" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Nov 2018 18:29:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8404754#M24272</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-15T18:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8406296#M24273</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your solutions are really very useful. Sorry to confuse you. I am a fresher and very new to this autocad.net api development. The video you provided is the output I require. But the block should move below the polyline and should get placed below the polyline when clicked. the moving block is my block having attributes in it. Checking the solutions you gave , I modified my code and now I am able to jig my block along the polyline. But not below the polyline. I used block instead of dbtext, used drawjig. Taking reference from your code, I developed it. Please don't take it as I am posting for fun or wasting your time.&lt;/P&gt;&lt;P&gt;My requirement in&amp;nbsp;clear description&amp;nbsp;when I run my command is:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;it will ask to select a polyline on drawing&lt;/LI&gt;&lt;LI&gt;on selection , a windows form will be opened, in that I will enter some value in the text box&lt;/LI&gt;&lt;LI&gt;On OK click of my windows form, below things happen&lt;/LI&gt;&lt;LI&gt;the value entered in the text box , is added as an attribute to the existing block, by importing it(readdwgfile)&lt;/LI&gt;&lt;LI&gt;then this block is moved along the selected polyline(below the polyline), with rotation of polylines angle.&lt;/LI&gt;&lt;LI&gt;on click it will be dropped at that location below the polyline.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;This is the clear requirement. Please do understand that I am serious about my task. Sorry again&amp;nbsp;if I confused you . I am attaching the jig code I am using now. In that I am passing my selected entity, rotating entity . As of now my output is, jigging is not completely below the polyline. and while moving the blocks rotation is not aligned with polylines angle. but once I end moving, it is placed with that segment angle in polyline. Hope you understood my requirement and where I am in my task now. Please let me know your suggestions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2018 11:53:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8406296#M24273</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-16T11:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8406506#M24274</link>
      <description>&lt;P&gt;I cannot understand why you keep on trying to do it with a DrawJig despite the fact all examples I provided use an EntityJig.&lt;/P&gt;
&lt;P&gt;As said before, I think jigging a single entity is simpler with an EntityJig. If you absolutely want to use a DrawJig, do it so but I won't follow you on this route.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Nov 2018 13:46:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8406506#M24274</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-16T13:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8409714#M24275</link>
      <description>&lt;P&gt;Hi _gile,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your inputs and guidance. Now I implemented using entity jig with the help of your references. Thanks for the patience you have towards my posts. As I am completely new to this, I took time to get through the things. Now when I use the below code, I am able to move only below the selected polyline.&amp;nbsp;When the direction on polyline is changing, the block is inverted. How can I modify the output to the one I attached as screenshot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find the screenshot I attached. Need your suggestions and inputs in this regard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Tejaswini&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 06:45:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8409714#M24275</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-19T06:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8409871#M24276</link>
      <description>&lt;P&gt;You need to PI radians (180°) to the rotation angle when its cosine is negative (i.e. [90°-270°] range)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;            protected override bool Update()
            {
                var point = pline.GetClosestPointTo(dragPt, false);
                var angle = pline.GetFirstDerivative(point).AngleOnPlane(plane);
                &lt;FONT color="#FF0000"&gt;if (Math.Cos(angle) &amp;lt; 0.0)
                    angle += Math.PI;&lt;/FONT&gt;
                br.Position = point;
                br.Rotation = angle;
                foreach (var entry in attInfos)
                {
                    var att = entry.Key;
                    var info = entry.Value;
                    att.Position = info.Position.TransformBy(br.BlockTransform);
                    att.Rotation = info.Rotation + angle;
                    if (info.IsAligned)
                    {
                        att.AlignmentPoint = info.Alignment.TransformBy(br.BlockTransform);
                        att.AdjustAlignment(br.Database);
                    }
                    if (att.IsMTextAttribute)
                    {
                        att.UpdateMTextAttribute();
                    }
                }
                return true;
            }&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Nov 2018 08:18:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8409871#M24276</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-19T08:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8427190#M24277</link>
      <description>&lt;P&gt;Hi _gile,&lt;/P&gt;
&lt;P&gt;After jigging and placing my block with attributes, I am getting my block position at top right of attribute value and attribute reference position at bottom left of the attribute value. I want to have the block position on top left and attribute position on bottom left ( both at same Y-position, one on top left and one on bottom left).&lt;/P&gt;
&lt;P&gt;In the reference code you provided,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;IsAligned = text.Justify != AttachmentPoint.BaseLeft; ----&amp;gt; at this actually my&amp;nbsp;block(which I am using and giving attribute value) justification is base left for attribute definition, if I give it as equal to , I am getting eNotapplication exception at&amp;nbsp; below code point.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;if (info.IsAligned)&amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;att.AlignmentPoint = info.Alignment.TransformBy(br.BlockTransform);-----&amp;gt; in this line&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;att.AdjustAlignment(br.Database);}&lt;/P&gt;
&lt;P&gt;Can you please help me in this. Please let me know, if you need more information regarding this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for any kind of help.&lt;/P&gt;
&lt;P&gt;Tejaswini.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 13:13:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8427190#M24277</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-27T13:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8428079#M24278</link>
      <description>&lt;P&gt;Sorry, I cannot understand what you're describing.&lt;/P&gt;
&lt;P&gt;English is not my first language (and I guess it's not yours either).&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;But beyond that, there seems to be a lot of confusion between block, attribute reference, attribute definition.&lt;/SPAN&gt;..&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 18:27:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8428079#M24278</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-11-27T18:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8433146#M24279</link>
      <description>&lt;P&gt;Hi _gile,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your response, actually I understood where I got deviated. I&amp;nbsp;got the issue fixed.&amp;nbsp; I calculated a perpendicular point to the block position and gave it to the attribute position, and the issue got fixed.&lt;/P&gt;
&lt;P&gt;Thanks a lot for the guidance.&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;Teja.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 13:21:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/8433146#M24279</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-11-29T13:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Jigging text block along selected polyline.</title>
      <link>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/12159889#M24280</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;I want when I execute Text movement at the command line to display a prompt in the editor like "Please select [+/-] for [O]ffset | [&amp;lt;/&amp;gt;] for [R]otation" to be able to adjust the offset (offset) and rotation of the text during movement&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 23:25:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/jigging-text-block-along-selected-polyline/m-p/12159889#M24280</guid>
      <dc:creator>quyenpv</dc:creator>
      <dc:date>2023-08-09T23:25:09Z</dc:date>
    </item>
  </channel>
</rss>

