<?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: Adding multiple labels (General, Spot elevation,...) by selecting objects in Civil 3D Forum</title>
    <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467703#M120042</link>
    <description>&lt;P&gt;Yes the "FOO" command worked.but it doesnt detect my blocks.&lt;/P&gt;</description>
    <pubDate>Fri, 24 Apr 2020 13:43:31 GMT</pubDate>
    <dc:creator>knuwan</dc:creator>
    <dc:date>2020-04-24T13:43:31Z</dc:date>
    <item>
      <title>Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819082#M120035</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this one is not a deal breaker but it would be nice to have:&lt;/P&gt;&lt;P&gt;Certain labels (the most important ones for me are "General" and "Spot Elevation on Surface") require the user to click on the desired spot one by one for each label.&lt;/P&gt;&lt;P&gt;I was wondering if there's a way to add more than one label by selecting objects (idealy: points).&lt;/P&gt;&lt;P&gt;(I know about "AddSpotElevLabelsOnGrid" but I don't want a grid but only specific points)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The workflow I'm looking for would be:&lt;BR /&gt;AddNoteLabel or AddSurfaceSpotElevLabel --&amp;gt; Select objects (points)--&amp;gt; Multiple labels are created&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could go the label COGO-points route but COGO points unfortunately don't allow reference texts.&lt;/P&gt;&lt;P&gt;Is there a way or maybe existing code to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks and best regards!&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 16:37:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819082#M120035</guid>
      <dc:creator>cwr001</dc:creator>
      <dc:date>2019-05-28T16:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819139#M120036</link>
      <description>&lt;DIV style="font-size: 1.1em; font-family: 'Artifakt'; line-height: 1.3em; margin: 15px 100px 80px 100px;"&gt;
&lt;P&gt;If you have one surface, the following lisp should be close to what you want, except it's currently set up to work with POINT entities. If you have multiple surfaces, the prompting is a little different and will require some editing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:foo ( / sset k m i )
  (setq sset (ssget '((0 . "POINT"))) i 0)
  (repeat (sslength sset)
    (setq k (ssname sset i))
    (setq m (cdr (assoc 10 (entget k))))
    (vl-cmdf "._ADDSURFACESPOTELEVLABEL" m "")
    (setq i (1+ i))
  )
  (princ)
)&lt;/PRE&gt;
&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="spot5.gif" style="width: 766px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/641527i70BBDB4D02180CCF/image-size/large?v=v2&amp;amp;px=999" role="button" title="spot5.gif" alt="spot5.gif" /&gt;&lt;/span&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 May 2019 16:59:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819139#M120036</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2019-05-28T16:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819395#M120037</link>
      <description>&lt;P&gt;If you were to consider third party add-ons, &lt;A title="Productivity Tools for Civil3D" href="http://www.dotsoft.com/c3dtools.htm" target="_blank" rel="noopener"&gt;DotSoft's C3DTools&lt;/A&gt; can add spot elevations on a selection set of objects.&amp;nbsp; For linear objects like polylines/featurelines you can specify the interval.&amp;nbsp; Even contains a special alignment option to specify station range/interval and multiple offsets (-10,0,10 etc).&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2019 18:47:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8819395#M120037</guid>
      <dc:creator>TerryDotson</dc:creator>
      <dc:date>2019-05-28T18:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8820660#M120038</link>
      <description>&lt;P&gt;Thanks a lot - this works exactly how I envisioned it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the way to go about if I wanted the lisp to work if multiple surfaces are present?&lt;/P&gt;&lt;P&gt;Can you point me in the right direction - would this pseudo code approach be viable here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Get a list of points objects&lt;/P&gt;&lt;P&gt;- For each point:&lt;/P&gt;&lt;P&gt;---&amp;gt; _AddSurfaceSpotElevLabel&amp;nbsp;&lt;/P&gt;&lt;P&gt;---&amp;gt; Press Enter twice (I don't really care about which surface is used, I can assign them later with select similar)&lt;/P&gt;&lt;P&gt;---&amp;gt; Paste point coordinate from my list &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does it work like this or do I have to opress the whole dialog with some deeper API-stuff?&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/655764"&gt;@TerryDotson&lt;/a&gt;: Thanks for pointing out that possibility - I'll have a look! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:56:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/8820660#M120038</guid>
      <dc:creator>cwr001</dc:creator>
      <dc:date>2019-05-29T09:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467540#M120039</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you kindly tell me how to run this LSP? I loaded it using "Load application" under "Manage".but dont know how to make it work to select the objects as you shown on your video.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/Krish&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 12:51:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467540#M120039</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T12:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467647#M120040</link>
      <description>&lt;P&gt;Sure thing:&lt;/P&gt;&lt;P&gt;* Copy the whole code from the codeblock and past&amp;nbsp; it into an empty *.txt-document. Rename that document to something like "MultipleLablesByPointSelection.lsp" (Make sure that the ending *.txt is changed to *.lsp).&lt;/P&gt;&lt;P&gt;* Start Autocad and run the command "APPLOAD". Select the just created Lisp-File and choose "Load".&lt;/P&gt;&lt;P&gt;* You can run the lisp by typing "FOO".&lt;/P&gt;&lt;P&gt;Note: "Foo" and "Bar" are common placeholders for code creation. If you want a more substantial command to start the lisp, you can just rename "FOO" in the *.lsp-file to something of your choice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:24:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467647#M120040</guid>
      <dc:creator>cwr001</dc:creator>
      <dc:date>2020-04-24T13:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467650#M120041</link>
      <description>&lt;DIV style="font-size: 1.1em; font-family: 'Artifakt'; line-height: 1.3em; margin: 15px 100px 80px 100px;"&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1720707"&gt;@knuwan&lt;/a&gt;&amp;nbsp;-- In its current form, you &lt;A href="http://www.lee-mac.com/runlisp.html" target="_blank" rel="noopener"&gt;load the lisp code&lt;/A&gt;, then the type in command would be "FOO". You can rename that before loading the file if desired.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:26:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467650#M120041</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2020-04-24T13:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467703#M120042</link>
      <description>&lt;P&gt;Yes the "FOO" command worked.but it doesnt detect my blocks.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:43:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467703#M120042</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T13:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467708#M120043</link>
      <description>&lt;P&gt;here is my scrshot.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 821px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/759830iACC159709ED0017F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:46:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467708#M120043</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T13:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467723#M120044</link>
      <description>&lt;P&gt;I even tried placing circles etc.but nothing get selected.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:52:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467723#M120044</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T13:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467725#M120045</link>
      <description>&lt;DIV style="font-size: 1.1em; font-family: 'Artifakt'; line-height: 1.3em; margin: 15px 100px 80px 100px;"&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1720707"&gt;@knuwan&lt;/a&gt;&amp;nbsp;- correct, the lisp code is filtering out every entity type except "POINT"&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:52:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467725#M120045</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2020-04-24T13:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467733#M120046</link>
      <description>&lt;P&gt;can you come up with a update that can be used in my situation?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:56:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467733#M120046</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T13:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467740#M120047</link>
      <description>&lt;P&gt;you know what, I extracted points from the surface and ran the LISP wow!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 13:59:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467740#M120047</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T13:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467761#M120048</link>
      <description>&lt;DIV style="box-shadow: 8px 8px; font-size: 12px; font-style: italic; color: #336699; font-family: verdana; margin: 5px 50px 25px 50px; padding: 8px; border: 1px dotted #336699;"&gt;@knuwan wrote:&lt;BR /&gt;
&lt;P&gt;can you come up with a update that can be used in my situation?&lt;/P&gt;
&lt;/DIV&gt;
&lt;DIV style="font-size: 1.1em; font-family: 'Artifakt'; line-height: 1.3em; margin: 15px 100px 80px 100px;"&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1720707"&gt;@knuwan&lt;/a&gt;&amp;nbsp;- feel free to edit the code to your needs.&lt;/P&gt;
&lt;P&gt;Change "POINT" to whatever entity type you want. Some entity types may not work as expected, so experiment around.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(0 . "POINT")&lt;/LI-CODE&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Apr 2020 14:07:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467761#M120048</guid>
      <dc:creator>rkmcswain</dc:creator>
      <dc:date>2020-04-24T14:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467770#M120049</link>
      <description>&lt;P&gt;OK! Thank you very much for the trick!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Apr 2020 14:09:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/9467770#M120049</guid>
      <dc:creator>knuwan</dc:creator>
      <dc:date>2020-04-24T14:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/10331214#M120050</link>
      <description>&lt;P&gt;Our company has two surface labels apps that allows you to automatic spot label all selected intersecting feature lines or polylines with a drawing. This is great for spot grading large amounts of concreate slabs for gas stations or airports projects. The other app allows the user to select a feature line and label all the vertices. A good example is selecting the gutter or top of curb feature line for a commercial property. Checkout or help videos below and also our suite of apps on the Autodesk App Store.&amp;nbsp; In one 3 acre commercial project my grading plan had 247 spot labels. With our app I was able to select 4 gutter line feature lines and 240 labels appear. Yes are they are dynamic to the surface. So if the feature line or polyline moves you can click the update bottom and the surface updates.&amp;nbsp; This also worked good for subdivision spot grading swales and pads.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=kIRKtzzQwyU" target="_blank" rel="noopener"&gt;CCLS Tools - YouTube Channel&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://apps.autodesk.com/CIV3D/en/Detail/Index?id=6447637305413252324&amp;amp;appLang=en&amp;amp;os=Win64" target="_blank" rel="noopener"&gt;Autodesk App Store &lt;/A&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-05-22_2-01-33.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/921610iED508AA24501918A/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-05-22_2-01-33.png" alt="2021-05-22_2-01-33.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 22 May 2021 07:06:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/10331214#M120050</guid>
      <dc:creator>tony1978</dc:creator>
      <dc:date>2021-05-22T07:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14002099#M264764</link>
      <description>&lt;P&gt;Since the lisp need "Point" entities, i converted cogo points into cad blocks then explode to get the points entities but lisp tells me that those points are invalid points. Can you help me please? i tried to edit the lisp and put "cogo points" instead of "points", but still not working.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 08:12:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14002099#M264764</guid>
      <dc:creator>rymen_kyro</dc:creator>
      <dc:date>2026-02-03T08:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14003318#M264799</link>
      <description>&lt;P&gt;LIST a Civil3d point, to find the type.&amp;nbsp; Should be something like AECC_COGO_POINT or something like that.&amp;nbsp; (Sorry in the middle of a large operation so I can't just tell you)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 22:21:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14003318#M264799</guid>
      <dc:creator>cwitzel5NL5H</dc:creator>
      <dc:date>2026-02-03T22:21:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding multiple labels (General, Spot elevation,...) by selecting objects</title>
      <link>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14168711#M269252</link>
      <description>&lt;P&gt;Good day,&amp;nbsp;&lt;BR /&gt;For anyone needs this code for generating spot elevation labels from points in Civil 3d, use the attached lisp.&lt;BR /&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jun 2026 06:26:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/civil-3d-forum/adding-multiple-labels-general-spot-elevation-by-selecting/m-p/14168711#M269252</guid>
      <dc:creator>darshjalal2</dc:creator>
      <dc:date>2026-06-17T06:26:48Z</dc:date>
    </item>
  </channel>
</rss>

