<?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: MText as AttributeReference in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139850#M76060</link>
    <description>Doesn't "\n" work?&lt;BR /&gt;
&lt;BR /&gt;
&lt;JASON booth=""&gt; wrote in message news:5804871@discussion.autodesk.com...&lt;BR /&gt;
Try a capitol P. I know for a fact that dimension text overrides will not &lt;BR /&gt;
accept a lower case P as an escape character. Mtext probably behaves the &lt;BR /&gt;
same way. Also, unless the object has a .SetContentsRTF() method, "/line" is &lt;BR /&gt;
almost guarenteed not to work.&lt;BR /&gt;
&lt;BR /&gt;
One more thing, if you are using VB the double backslash is not required.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
"Line 1\PLine 2"&lt;/JASON&gt;</description>
    <pubDate>Wed, 19 Dec 2007 15:54:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-12-19T15:54:06Z</dc:date>
    <item>
      <title>MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139844#M76054</link>
      <description>I've tried everything I can think of but I can't find out how to set an attribute reference to multi line text.&lt;BR /&gt;
&lt;BR /&gt;
I'm inserting a block that is already created and the attribute defintion is multi text.&lt;BR /&gt;
&lt;BR /&gt;
When I look at the IsMTextAttributeDefinition property of my attribute definition it is true but after I've set properties for the reference from the definition the reference still says false for IsMTextAttribute.&lt;BR /&gt;
&lt;BR /&gt;
If I try to use UpdateMTextAttribute or set an MText object as the MTextAttribute then I get an error.&lt;BR /&gt;
&lt;BR /&gt;
Can anyone point me in the right direction with this?</description>
      <pubDate>Mon, 17 Dec 2007 11:51:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139844#M76054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-17T11:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139845#M76055</link>
      <description>I finally figured it out.&lt;BR /&gt;
&lt;BR /&gt;
I used AttributeReference.SetAttributeFromBlock, using the attribute definition and block reference that define the attribute reference in the arguments.&lt;BR /&gt;
&lt;BR /&gt;
I'm struggling to set the MText contents property, I tried to use an MText object but I think I'm creating a memory problem, AutoCAD keeps crashing when I use this object.&lt;BR /&gt;
&lt;BR /&gt;
I cannot access the MTextAttribute.Contents directly, I can access the TextString and that will set the MTextAttribute.Contents but only formatted for as single line regardles of whether I use /p or vbcrlf as a line break.&lt;BR /&gt;
&lt;BR /&gt;
Does anyone have any experience on populating this property?

Message was edited by: Guy Lowndes</description>
      <pubDate>Mon, 17 Dec 2007 13:26:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139845#M76055</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-17T13:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139846#M76056</link>
      <description>Try using '\\P' to show a new line in mtext.</description>
      <pubDate>Mon, 17 Dec 2007 23:13:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139846#M76056</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-17T23:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139847#M76057</link>
      <description>The AcDb.MText object accepts RTF (rich text file) input. In RTF format, the string "\line " denotes a new line (note the space).&lt;BR /&gt;
&lt;BR /&gt;
When writing my own wrapper class for the MText object, I had to replace all instances of Envorinment.Newline with this string value.&lt;BR /&gt;
&lt;BR /&gt;
It's possible you can use the same technique. It's most likely not the ideal solution, but it worked for me...</description>
      <pubDate>Tue, 18 Dec 2007 00:26:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139847#M76057</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2007-12-18T00:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139848#M76058</link>
      <description>Thanks for the feed back.&lt;BR /&gt;
&lt;BR /&gt;
I cannot change the value of AttributeReference.MTextAttribute.Contents directly, only by either using the AttributeReference.TextString property or by using AttributeReference.MTextAttribute=myMText.&lt;BR /&gt;
&lt;BR /&gt;
I tried both options with AttributeReference.TextString, without success.&lt;BR /&gt;
&lt;BR /&gt;
The "/line " option didn't work, the TextString property simply ripped out the '/l' and left me with 'ine' in the text.&lt;BR /&gt;
&lt;BR /&gt;
The '\\p' option left me with '\p' in the MTextAttribute.Contents but the TextString stopped just before the switch and I didn't get the subsequent lines showing in the block in the drawing, even though MTextAttribute.Contents did show the additonal lines present when I used the Object Properties dialog box in AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
When I use MTextAttribute=myMtext the application crashes when I try to quit it and I get a C+ virtual error message box.&lt;BR /&gt;
&lt;BR /&gt;
I think it's something to with the way I manage the objects and I have to be honest this isn't something I'm hot at.&lt;BR /&gt;
&lt;BR /&gt;
Here's some of my code:&lt;BR /&gt;
&lt;BR /&gt;
'Declare an MText object &lt;BR /&gt;
                                Dim attText As New MText&lt;BR /&gt;
                                attText.SetPropertiesFrom(attRef.MTextAttribute)&lt;BR /&gt;
&lt;BR /&gt;
                                &lt;BR /&gt;
                                'Set the attribute text&lt;BR /&gt;
                                For noteIndex As Integer = lbound To ubound _&lt;BR /&gt;
                                        Step loopStep&lt;BR /&gt;
&lt;BR /&gt;
                                    'Add a line break if necessary&lt;BR /&gt;
                                    If attText.Contents.Trim.Length &amp;gt; 0 Then&lt;BR /&gt;
                                        'Add a line break&lt;BR /&gt;
                                        attText.Contents += "\\p"&lt;BR /&gt;
                                    End If&lt;BR /&gt;
&lt;BR /&gt;
                                    'Add the text&lt;BR /&gt;
                                    attText.Contents += noteText.GetByIndex(noteIndex)&lt;BR /&gt;
&lt;BR /&gt;
                                Next&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the MText&lt;BR /&gt;
                                If attRef.IsMTextAttribute = True Then&lt;BR /&gt;
&lt;BR /&gt;
                                    'Set the MText attribute&lt;BR /&gt;
                                    attRef.MTextAttribute=attText)&lt;BR /&gt;
&lt;BR /&gt;
                                    'Update the MText attribute&lt;BR /&gt;
                                    attRef.UpdateMTextAttribute()&lt;BR /&gt;
&lt;BR /&gt;
                                End If&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the value of attRef2&lt;BR /&gt;
                                attRef2 = attRef&lt;BR /&gt;
&lt;BR /&gt;
                                'Dispose of the temporary MText&lt;BR /&gt;
                                attText.Dispose()&lt;BR /&gt;
&lt;BR /&gt;
I know it's a bit mixed up, it needs cleaning slightly slightly, but am I doing something fundamentally wrong?</description>
      <pubDate>Wed, 19 Dec 2007 08:48:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139848#M76058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T08:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139849#M76059</link>
      <description>Try a capitol P. I know for a fact that dimension text overrides will not accept a lower case P as an escape character. Mtext probably behaves the same way. Also, unless the object has a .SetContentsRTF() method, "/line" is almost guarenteed not to work.&lt;BR /&gt;
&lt;BR /&gt;
One more thing, if you are using VB the double backslash is not required.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
"Line 1\PLine 2"</description>
      <pubDate>Wed, 19 Dec 2007 15:45:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139849#M76059</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2007-12-19T15:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139850#M76060</link>
      <description>Doesn't "\n" work?&lt;BR /&gt;
&lt;BR /&gt;
&lt;JASON booth=""&gt; wrote in message news:5804871@discussion.autodesk.com...&lt;BR /&gt;
Try a capitol P. I know for a fact that dimension text overrides will not &lt;BR /&gt;
accept a lower case P as an escape character. Mtext probably behaves the &lt;BR /&gt;
same way. Also, unless the object has a .SetContentsRTF() method, "/line" is &lt;BR /&gt;
almost guarenteed not to work.&lt;BR /&gt;
&lt;BR /&gt;
One more thing, if you are using VB the double backslash is not required.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
"Line 1\PLine 2"&lt;/JASON&gt;</description>
      <pubDate>Wed, 19 Dec 2007 15:54:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139850#M76060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T15:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139851#M76061</link>
      <description>Dim db As AcDb.Database = _&lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.HostApplicationServices.WorkingDatabase()&lt;BR /&gt;
Dim mtext As New Autodesk.AutoCAD.DatabaseServices.MText&lt;BR /&gt;
mtext.Contents = "{First Line\PSecond Line}"&lt;BR /&gt;
mtext.Location = New AcGe.Point3d(0, 0, 0)&lt;BR /&gt;
mtext.TextHeight = 500&lt;BR /&gt;
Dim id As AcDb.ObjectId&lt;BR /&gt;
Using tr As AcDb.Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
   Dim btr As AcDb.BlockTableRecord = _&lt;BR /&gt;
   DirectCast(tr.GetObject(db.CurrentSpaceId, AcDb.OpenMode.ForWrite), &lt;BR /&gt;
AcDb.BlockTableRecord)&lt;BR /&gt;
   id = btr.AppendEntity(mtext)&lt;BR /&gt;
   db.TransactionManager.AddNewlyCreatedDBObject(mtext, True)&lt;BR /&gt;
   tr.Commit()&lt;BR /&gt;
End Using&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"PeterG" &lt;INFO&gt; escreveu na mensagem &lt;BR /&gt;
news:5804921@discussion.autodesk.com...&lt;BR /&gt;
Doesn't "\n" work?&lt;BR /&gt;
&lt;BR /&gt;
&lt;JASON booth=""&gt; wrote in message news:5804871@discussion.autodesk.com...&lt;BR /&gt;
Try a capitol P. I know for a fact that dimension text overrides will not&lt;BR /&gt;
accept a lower case P as an escape character. Mtext probably behaves the&lt;BR /&gt;
same way. Also, unless the object has a .SetContentsRTF() method, "/line" is&lt;BR /&gt;
almost guarenteed not to work.&lt;BR /&gt;
&lt;BR /&gt;
One more thing, if you are using VB the double backslash is not required.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
"Line 1\PLine 2"&lt;/JASON&gt;&lt;/INFO&gt;</description>
      <pubDate>Wed, 19 Dec 2007 17:14:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139851#M76061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-19T17:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139852#M76062</link>
      <description>OK, I've figured it out.&lt;BR /&gt;
&lt;BR /&gt;
The main problem was that I couldn't access AttributeReference.MTextAttribute.Contents directly and had to use AttributeReference.TextString.&lt;BR /&gt;
&lt;BR /&gt;
When I added the switch \P to AttributeReference.TextString and then added any other text the switch was removed automatically.&lt;BR /&gt;
&lt;BR /&gt;
So what I did was construct an entire string and then set AttributeReference.TextString to that string and it works fine.&lt;BR /&gt;
&lt;BR /&gt;
'Declare a string to hold the text contents&lt;BR /&gt;
                                Dim textContents As String = ""&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the attribute text&lt;BR /&gt;
                                For noteIndex As Integer = lbound To ubound _&lt;BR /&gt;
                                        Step loopStep&lt;BR /&gt;
&lt;BR /&gt;
                                    'Add a line break if necessary&lt;BR /&gt;
                                    If textContents.Trim.Length &amp;gt; 0 Then&lt;BR /&gt;
                                        'Add a line break&lt;BR /&gt;
                                        textContents += "\P" &amp;amp; noteText.GetByIndex(noteIndex)&lt;BR /&gt;
                                    Else&lt;BR /&gt;
                                        textContents = noteText.GetByIndex(noteIndex)&lt;BR /&gt;
                                    End If&lt;BR /&gt;
&lt;BR /&gt;
                                Next&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the MText&lt;BR /&gt;
                                If attRef.IsMTextAttribute = True Then&lt;BR /&gt;
&lt;BR /&gt;
                                    'Set the text&lt;BR /&gt;
                                    attRef.TextString = textContents&lt;BR /&gt;
&lt;BR /&gt;
                                    'Update the MText attribute&lt;BR /&gt;
                                    attRef.UpdateMTextAttribute()</description>
      <pubDate>Thu, 20 Dec 2007 09:06:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139852#M76062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-20T09:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: MText as AttributeReference</title>
      <link>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139853#M76063</link>
      <description>Shared Sub ChangeMTextAttributeTeste()&lt;BR /&gt;
      Dim ed As AcEd.Editor = &lt;BR /&gt;
AcAp.Application.DocumentManager.MdiActiveDocument.Editor&lt;BR /&gt;
      Dim opt As New AcEd.PromptEntityOptions(vbLf &amp;amp; "Select BlockReference &lt;BR /&gt;
to modify")&lt;BR /&gt;
      Dim res As AcEd.PromptEntityResult = ed.GetEntity(opt)&lt;BR /&gt;
      If res.Status &amp;lt;&amp;gt; AcEd.PromptStatus.OK Then Exit Sub&lt;BR /&gt;
      Dim idb As AcDb.ObjectId = res.ObjectId&lt;BR /&gt;
      Dim decimals As Integer = 2&lt;BR /&gt;
      Dim lunits As Integer = &lt;BR /&gt;
Autodesk.AutoCAD.Runtime.DistanceUnitFormat.Current&lt;BR /&gt;
      Dim db As AcDb.Database = &lt;BR /&gt;
Autodesk.AutoCAD.DatabaseServices.HostApplicationServices.WorkingDatabase&lt;BR /&gt;
      Using tr As AcDb.Transaction = db.TransactionManager.StartTransaction&lt;BR /&gt;
         Dim ent As AcDb.Entity = DirectCast(tr.GetObject(idb, &lt;BR /&gt;
AcDb.OpenMode.ForRead, False, True), AcDb.Entity)&lt;BR /&gt;
         If ent.GetType.Name &amp;lt;&amp;gt; "BlockReference" Then Exit Sub&lt;BR /&gt;
         Dim ref As AcDb.BlockReference = _&lt;BR /&gt;
         DirectCast(tr.GetObject(idb, AcDb.OpenMode.ForRead), &lt;BR /&gt;
AcDb.BlockReference)&lt;BR /&gt;
         Dim btr As AcDb.BlockTableRecord = _&lt;BR /&gt;
         DirectCast(tr.GetObject(ref.BlockTableRecord, &lt;BR /&gt;
AcDb.OpenMode.ForRead, False), AcDb.BlockTableRecord)&lt;BR /&gt;
         If Not btr.HasAttributeDefinitions Then Exit Sub&lt;BR /&gt;
         For Each id As AcDb.ObjectId In btr&lt;BR /&gt;
            ent = tr.GetObject(id, AcDb.OpenMode.ForRead)&lt;BR /&gt;
            If ent.GetType.Name = "AttributeDefinition" Then&lt;BR /&gt;
               Dim att As AcDb.AttributeDefinition = tr.GetObject(id, &lt;BR /&gt;
AcDb.OpenMode.ForRead)&lt;BR /&gt;
               If att.Tag = "ElevationHeight" AndAlso ent.GetType.Name = &lt;BR /&gt;
"MText" Then&lt;BR /&gt;
                  Dim dst As String = CDbl(att.TextString)&lt;BR /&gt;
                  Dim dss As String = att.TextString&lt;BR /&gt;
                  Dim resd As AcEd.PromptDoubleResult = Nothing&lt;BR /&gt;
                  Dim optd As New AcEd.PromptDoubleOptions("")&lt;BR /&gt;
                  optd.AllowNone = False&lt;BR /&gt;
                  optd.UseDefaultValue = True&lt;BR /&gt;
                  optd.Message = vbLf &amp;amp; "New value"&lt;BR /&gt;
                  optd.DefaultValue = _&lt;BR /&gt;
                  AcRx.Converter.DistanceToString(dst, lunits, decimals)&lt;BR /&gt;
                  resd = ed.GetDouble(optd)&lt;BR /&gt;
                  If resd.Status = &lt;BR /&gt;
Autodesk.AutoCAD.EditorInput.PromptStatus.OK Then&lt;BR /&gt;
                     dss = &lt;BR /&gt;
Autodesk.AutoCAD.Runtime.Converter.DistanceToString(resd.Value, lunits, &lt;BR /&gt;
decimals)&lt;BR /&gt;
                     att.UpgradeOpen()&lt;BR /&gt;
                     att.TextString = resd.Value&lt;BR /&gt;
                     Dim mtext As AcDb.MText = tr.GetObject(ent.ObjectId, &lt;BR /&gt;
AcDb.OpenMode.ForWrite)&lt;BR /&gt;
                     mtext.Contents = "{\L" &amp;amp; dss &amp;amp; "}"&lt;BR /&gt;
                     RegenLayer(mtext.LayerId)&lt;BR /&gt;
                  End If&lt;BR /&gt;
               End If&lt;BR /&gt;
            End If&lt;BR /&gt;
         Next&lt;BR /&gt;
         tr.Commit()&lt;BR /&gt;
      End Using&lt;BR /&gt;
   End Sub&lt;BR /&gt;
&lt;BR /&gt;
   Shared Sub RegenLayer(ByVal layerID As AcDb.ObjectId)&lt;BR /&gt;
      ' Because AutoCAD 2006 VB.NET do not have regen&lt;BR /&gt;
      Dim layerIDs(0) As AcDb.ObjectId&lt;BR /&gt;
      layerIDs(0) = layerID&lt;BR /&gt;
      AcIn.LayerUtilities.RegenLayers(layerIDs, &lt;BR /&gt;
Autodesk.AutoCAD.Internal.LayerUtilities.RegenPending)&lt;BR /&gt;
   End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;GUY lowndes=""&gt; escreveu na mensagem news:5805654@discussion.autodesk.com...&lt;BR /&gt;
OK, I've figured it out.&lt;BR /&gt;
&lt;BR /&gt;
The main problem was that I couldn't access &lt;BR /&gt;
AttributeReference.MTextAttribute.Contents directly and had to use &lt;BR /&gt;
AttributeReference.TextString.&lt;BR /&gt;
&lt;BR /&gt;
When I added the switch \P to AttributeReference.TextString and then added &lt;BR /&gt;
any other text the switch was removed automatically.&lt;BR /&gt;
&lt;BR /&gt;
So what I did was construct an entire string and then set &lt;BR /&gt;
AttributeReference.TextString to that string and it works fine.&lt;BR /&gt;
&lt;BR /&gt;
'Declare a string to hold the text contents&lt;BR /&gt;
                                Dim textContents As String = ""&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the attribute text&lt;BR /&gt;
                                For noteIndex As Integer = lbound To ubound &lt;BR /&gt;
_&lt;BR /&gt;
                                        Step loopStep&lt;BR /&gt;
&lt;BR /&gt;
                                    'Add a line break if necessary&lt;BR /&gt;
                                    If textContents.Trim.Length &amp;gt; 0 Then&lt;BR /&gt;
                                        'Add a line break&lt;BR /&gt;
                                        textContents += "\P" &amp;amp; &lt;BR /&gt;
noteText.GetByIndex(noteIndex)&lt;BR /&gt;
                                    Else&lt;BR /&gt;
                                        textContents = &lt;BR /&gt;
noteText.GetByIndex(noteIndex)&lt;BR /&gt;
                                    End If&lt;BR /&gt;
&lt;BR /&gt;
                                Next&lt;BR /&gt;
&lt;BR /&gt;
                                'Set the MText&lt;BR /&gt;
                                If attRef.IsMTextAttribute = True Then&lt;BR /&gt;
&lt;BR /&gt;
                                    'Set the text&lt;BR /&gt;
                                    attRef.TextString = textContents&lt;BR /&gt;
&lt;BR /&gt;
                                    'Update the MText attribute&lt;BR /&gt;
                                    attRef.UpdateMTextAttribute()&lt;/GUY&gt;</description>
      <pubDate>Mon, 24 Dec 2007 18:35:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/mtext-as-attributereference/m-p/2139853#M76063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-12-24T18:35:32Z</dc:date>
    </item>
  </channel>
</rss>

