<?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: Multiline Attributes Revert to Single Line in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/5472296#M47020</link>
    <description>&lt;P&gt;After all this time I still having this issue&amp;nbsp;coming back from time to time and screwing us up.&amp;nbsp; Sometimes there is data lost when the attributes reverts back to single line.&amp;nbsp; Has anyone experienced this issued or is just only me who is using multiline attributes? It will be great to know at least why it happens or better yet to be able to prevent it from happening. Please help.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Jan 2015 15:01:49 GMT</pubDate>
    <dc:creator>HJohn1</dc:creator>
    <dc:date>2015-01-16T15:01:49Z</dc:date>
    <item>
      <title>Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4614443#M47016</link>
      <description>&lt;P&gt;There was a discussion about this issue in the past, but there was not a clear response.&amp;nbsp; I am experiencing this issue&amp;nbsp;every now and then and I don't know why or how it happens.&amp;nbsp; No modifications to the BlockDefinitions or any BlockReferences are made and for some magic all multiline attributes in the drawing file&amp;nbsp;revert to single line.&amp;nbsp; After that happens the only way I know to fix them is to go through all definitions in the Block Attribute Manager and make every attribute multiline again.&amp;nbsp; This is very annoying because I don't know how it happens so it can be prevented and because it takes time to fix them again.&amp;nbsp; AutoCAD 2012 vanilla, (Mechanical) on Windows 7 32 and 64 bits.&amp;nbsp; Does anybody know what causes this issue or have any suggestions about preventing this.&amp;nbsp; Any help will be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2013 19:07:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4614443#M47016</guid>
      <dc:creator>HJohn1</dc:creator>
      <dc:date>2013-11-12T19:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4667871#M47017</link>
      <description>&lt;P&gt;Good evening,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;I ran into&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the same problem&lt;/SPAN&gt;&lt;/SPAN&gt; in AutoCAD Architecture 2013.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1) How are you is a created multiline attribute?&lt;BR /&gt;2) How are you is save this drawing?&lt;BR /&gt;&lt;BR /&gt;In my case I incorrect to save drawing.&lt;BR /&gt;&lt;SPAN class="short_text"&gt;&lt;SPAN class="hps"&gt;Сorrected&lt;/SPAN&gt; &lt;SPAN class="hps alt-edited"&gt;by this method&lt;/SPAN&gt;&lt;/SPAN&gt;: &amp;nbsp; "acDoc.Database.CloseInput(true)";&lt;BR /&gt;&lt;BR /&gt;Document acDoc = Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; string strDwgName = acDoc.Name;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; acDoc.Database.CloseInput(true);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; acDoc.Database.SaveAs(strDwgName, true, DwgVersion.Current, acDoc.Database.SecurityParameters);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2013 21:13:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4667871#M47017</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-02T21:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4701525#M47018</link>
      <description>&lt;P&gt;Same problem here on AutoCAD 2014 (I.18.0.0). The code to reproduce:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[CommandMethod("DBSAVEAS", CommandFlags.Session)]
public void DbSaveAs()
{
    Document doc = Application.DocumentManager.Open(Path.Combine(Path.GetTempPath(), "dbsaveas.dwg"), false);
    Database db = doc.Database;
    db.SaveAs(db.Filename, true, db.OriginalFileVersion, db.SecurityParameters);
}&lt;/PRE&gt;&lt;P&gt;The dbsaveas.dwg is attached. It contains one block insert with a multiline attibute called title. When I launch the command above and I reopen the drawing, the multiline flag is lost on the attribute and the second line of the value disappear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried with CloseInput:&lt;SPAN style="line-height: 15px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[CommandMethod("DBSAVEASCI", CommandFlags.Session)]
public void DbSaveAsWithCloseInput()
{
    Document doc = Application.DocumentManager.Open(Path.Combine(Path.GetTempPath(), "dbsaveas.dwg"), false);
    Database db = doc.Database;
    db.CloseInput(true);
    db.SaveAs(db.Filename, true, db.OriginalFileVersion, db.SecurityParameters);
}&lt;/PRE&gt;&lt;P&gt;Doesn't work. The multiline attribute revert to a single line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried with AcadDocument.Save (COM):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[CommandMethod("COMSAVE", CommandFlags.Session)]
public void ComSave()
{
    Document doc = Application.DocumentManager.Open(Path.Combine(Path.GetTempPath(), "dbsaveas.dwg"), false);
    dynamic acadDoc = doc.GetAcadDocument();
    acadDoc.Save();
}&lt;/PRE&gt;&lt;P&gt;It works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tried with a side database:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[CommandMethod("SIDEDB", CommandFlags.Session)]
public void SideDb()
{
    using (var db = new Database(false, true))
    {
        db.ReadDwgFile(Path.Combine(Path.GetTempPath(), "dbsaveas.dwg"), FileOpenMode.OpenForReadAndReadShare, true, null);
        db.SaveAs(db.Filename, true, db.OriginalFileVersion, db.SecurityParameters);
    }
}&lt;/PRE&gt;&lt;P&gt;It works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a really annoying bug, as it causes data lost. And I don't understand why there is no Document.Save in the .NET API (there is one in COM ???).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem also occurs with doc.DowngradeDocOpen(true)&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2013 09:38:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4701525#M47018</guid>
      <dc:creator>FRFR1426</dc:creator>
      <dc:date>2013-12-18T09:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4707455#M47019</link>
      <description>&lt;P&gt;I still dealing with this issue in AutoCAD 2012However, I was&amp;nbsp;hopping that when we upgrade to 2014&amp;nbsp;next year, this issue will be gone but I now see that it still there.&amp;nbsp; I am not using any of the method you mentioned. I am using the following methods.&lt;/P&gt;&lt;PRE&gt;Autodesk.AutoCAD.ApplicationServices.DocumentExtension.CloseAndSave()
Autodesk.AutoCAD.ApplicationServices.DocumentExtension.CloseAndDiscard()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;Reverting back to single line not always occurs and I have not been able to figure out when or how it happens.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2013 14:38:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/4707455#M47019</guid>
      <dc:creator>HJohn1</dc:creator>
      <dc:date>2013-12-20T14:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/5472296#M47020</link>
      <description>&lt;P&gt;After all this time I still having this issue&amp;nbsp;coming back from time to time and screwing us up.&amp;nbsp; Sometimes there is data lost when the attributes reverts back to single line.&amp;nbsp; Has anyone experienced this issued or is just only me who is using multiline attributes? It will be great to know at least why it happens or better yet to be able to prevent it from happening. Please help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2015 15:01:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/5472296#M47020</guid>
      <dc:creator>HJohn1</dc:creator>
      <dc:date>2015-01-16T15:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/6364284#M47021</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having the same problem. When I opened my drawing this morning, my attribute that had 3 lines has only one line. It's still a multiline when I open the blockeditor but, the data of the 2 other lines are missing. This is very worring.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any solutions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Marcelo&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 13:19:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/6364284#M47021</guid>
      <dc:creator>ps-trigenex</dc:creator>
      <dc:date>2016-06-03T13:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/7868522#M47022</link>
      <description>&lt;P&gt;I've run into this as well.&amp;nbsp; The only solution I've come up with is to use the SystemIO.File.copy to copy the old file to a new file name.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; dwgpath &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = ThisDrawing.Path&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; originalName &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = ThisDrawing.Name&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; cllicode &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = Left(ThisDrawing.Name, 8)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; flSqLc &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = Mid(ThisDrawing.Name, 13, 8)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; woNum &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = WOSeqForm.TextBoxYear.Text &amp;amp; WOSeqForm.TextBoxSeq.Text &amp;amp; WOSeqForm.TextBoxRev.Text&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Consolas" size="2"&gt;newFileName = cllicode &amp;amp; &lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;"-WO-"&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; &amp;amp; woNum &amp;amp; &lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;"-"&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; &amp;amp; flSqLc &amp;amp; &lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;".dwg"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; newPath &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = ThisDrawing.Path &amp;amp; &lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;"\"&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; &amp;amp; newFileName&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; oldPath &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;String&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = dwgpath &amp;amp; &lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;"\"&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; &amp;amp; originalName&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Try&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; acDoc &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Document&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Application&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.DocumentManager.MdiActiveDocument&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CloseAndDiscard(acDoc)&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;File&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.Copy(oldPath, newPath)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Dim&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; acDocMgr &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;DocumentCollection&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; = &lt;/FONT&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Application&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.DocumentManager&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;DocumentCollectionExtension&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;.Open(acDocMgr, newPath, &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;False&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Catch&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt; ex &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;As&lt;/FONT&gt; &lt;FONT color="#2b91af" face="Consolas" size="2"&gt;Exception&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;End&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Consolas" size="2"&gt;Try&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gets information about the existing drawing name and info from a dialog box (WOSeqForm) to create both the oldPath and newPath.&amp;nbsp; You can use whatever you want for creating these paths.&amp;nbsp; Then it closes the drawing.&amp;nbsp; Then it uses File.Copy to create a copy of the file with a new name.&amp;nbsp; Then it opens the newly named drawing file.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 14:38:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/7868522#M47022</guid>
      <dc:creator>KenWashburn</dc:creator>
      <dc:date>2018-03-20T14:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiline Attributes Revert to Single Line</title>
      <link>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/7970512#M47023</link>
      <description>&lt;P&gt;I am also experiencing this problem. I have developed an Add-In that uses db.SaveAs quite often, and it's come to my attention that my Add-In is wrecking users blocks with multiline attributes. Not good!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm attaching a sample drawing, a link to sample DLL and a video demonstrating the issue. The steps to reproduce are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Open the provided "Multiline Att Test.dwg".&lt;/LI&gt;&lt;LI&gt;Using NETLOAD, load the provided "SaveAsTest.dll"&lt;/LI&gt;&lt;LI&gt;In command line, type "SaveAsTest" to execute the command in DLL.&lt;/LI&gt;&lt;LI&gt;Next, without saving the open drawing manually, either open the DWG a second time read-only, or close the drawing(without saving) and re-open.&lt;/LI&gt;&lt;LI&gt;Once drawing is open, you will notice multiline attribute in block has reverted to single line.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Sample DWG is attached, and here is link to DLL with custom SaveAsTest command.&lt;/P&gt;&lt;P&gt;&lt;A href="https://app.box.com/s/y5qwhpqf1som9iac52fj2f2vzk5tz4hv" target="_blank"&gt;https://app.box.com/s/y5qwhpqf1som9iac52fj2f2vzk5tz4hv&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see this video showing steps from above:&lt;/P&gt;&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DxCrKlm4hUeA&amp;amp;type=text%2Fhtml&amp;amp;schema=google&amp;amp;display_name=YouTube&amp;amp;src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FxCrKlm4hUeA" width="400" height="225" scrolling="no" title="YouTube embed" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, this is quite a big problem for some, and seems to have been round since 2013 at least. At the moment, I have to inform users of my Add-In they cannot use Multiline Attributes in their blocks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help Autodesk!&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;Jon&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 20:13:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/multiline-attributes-revert-to-single-line/m-p/7970512#M47023</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-30T20:13:12Z</dc:date>
    </item>
  </channel>
</rss>

