<?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 iLogic general notes in one text box multiple text heights in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9304597#M66730</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to figure out how to take the standard ilogic script for "add a general note" in the inventor help section and modify it so it will produce all the text in one text box as well as different height text for the title. Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script i'm trying to modify below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="ui-tabs ui-widget ui-widget-content ui-corner-all"&gt;&lt;DIV class="api-code ui-tabs-panel ui-widget-content ui-corner-bottom"&gt;&lt;PRE&gt;Public Sub SheetTextAdd()
    &lt;SPAN&gt;' Set a reference to the drawing document.&lt;/SPAN&gt;
    &lt;SPAN&gt;' This assumes a drawing document is active.&lt;/SPAN&gt;
    Dim oDrawDoc As DrawingDocument
    Set oDrawDoc = ThisApplication.ActiveDocument

    &lt;SPAN&gt;' Set a reference to the active sheet.&lt;/SPAN&gt;
    Dim oActiveSheet As Sheet
    Set oActiveSheet = oDrawDoc.ActiveSheet
    
    &lt;SPAN&gt;' Set a reference to the GeneralNotes object&lt;/SPAN&gt;
    Dim oGeneralNotes As GeneralNotes
    Set oGeneralNotes = oActiveSheet.DrawingNotes.GeneralNotes
    
    Dim oTG As TransientGeometry
    Set oTG = ThisApplication.TransientGeometry

    &lt;SPAN&gt;' Create text with simple string as input. Since this doesn't use&lt;/SPAN&gt;
    &lt;SPAN&gt;' any text overrides, it will default to the active text style.&lt;/SPAN&gt;
    Dim sText As String
    sText = "Drawing Notes"
    
    Dim oGeneralNote As GeneralNote
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, 18), sText)

    &lt;SPAN&gt;' Create text using various overrides.&lt;/SPAN&gt;
    sText = "Notice: All holes larger than 0.500 n are to be lubricated."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, 16), sText)

    &lt;SPAN&gt;' Create a set of notes that are numbered and aligned along the left.&lt;/SPAN&gt;
    Dim dYCoord As Double
    dYCoord = 14
    Dim dYOffset As Double
    Dim oStyle As TextStyle
    Set oStyle = oGeneralNotes.Item(1).TextStyle
    dYOffset = oStyle.FontSize * 1.5

    &lt;SPAN&gt;' Simple single line text.&lt;/SPAN&gt;
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "1.")
    sText = "This is note 1."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Two line text. The two lines are defined using the  tag within the text string.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "2.")
    sText = "This is note 2,  which contains two lines."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Single line of text.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "3.")
    sText = "This is note 3."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Three lines of text.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "4.")
    sText = "This is note 4,  which contains  several lines."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "5.")
    
    sText = "Here is the last and final line of text."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)
End Sub&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
    <pubDate>Sat, 08 Feb 2020 05:29:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-02-08T05:29:10Z</dc:date>
    <item>
      <title>iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9304597#M66730</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to figure out how to take the standard ilogic script for "add a general note" in the inventor help section and modify it so it will produce all the text in one text box as well as different height text for the title. Is this possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Script i'm trying to modify below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="ui-tabs ui-widget ui-widget-content ui-corner-all"&gt;&lt;DIV class="api-code ui-tabs-panel ui-widget-content ui-corner-bottom"&gt;&lt;PRE&gt;Public Sub SheetTextAdd()
    &lt;SPAN&gt;' Set a reference to the drawing document.&lt;/SPAN&gt;
    &lt;SPAN&gt;' This assumes a drawing document is active.&lt;/SPAN&gt;
    Dim oDrawDoc As DrawingDocument
    Set oDrawDoc = ThisApplication.ActiveDocument

    &lt;SPAN&gt;' Set a reference to the active sheet.&lt;/SPAN&gt;
    Dim oActiveSheet As Sheet
    Set oActiveSheet = oDrawDoc.ActiveSheet
    
    &lt;SPAN&gt;' Set a reference to the GeneralNotes object&lt;/SPAN&gt;
    Dim oGeneralNotes As GeneralNotes
    Set oGeneralNotes = oActiveSheet.DrawingNotes.GeneralNotes
    
    Dim oTG As TransientGeometry
    Set oTG = ThisApplication.TransientGeometry

    &lt;SPAN&gt;' Create text with simple string as input. Since this doesn't use&lt;/SPAN&gt;
    &lt;SPAN&gt;' any text overrides, it will default to the active text style.&lt;/SPAN&gt;
    Dim sText As String
    sText = "Drawing Notes"
    
    Dim oGeneralNote As GeneralNote
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, 18), sText)

    &lt;SPAN&gt;' Create text using various overrides.&lt;/SPAN&gt;
    sText = "Notice: All holes larger than 0.500 n are to be lubricated."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, 16), sText)

    &lt;SPAN&gt;' Create a set of notes that are numbered and aligned along the left.&lt;/SPAN&gt;
    Dim dYCoord As Double
    dYCoord = 14
    Dim dYOffset As Double
    Dim oStyle As TextStyle
    Set oStyle = oGeneralNotes.Item(1).TextStyle
    dYOffset = oStyle.FontSize * 1.5

    &lt;SPAN&gt;' Simple single line text.&lt;/SPAN&gt;
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "1.")
    sText = "This is note 1."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Two line text. The two lines are defined using the  tag within the text string.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "2.")
    sText = "This is note 2,  which contains two lines."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Single line of text.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "3.")
    sText = "This is note 3."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    &lt;SPAN&gt;' Three lines of text.&lt;/SPAN&gt;
    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "4.")
    sText = "This is note 4,  which contains  several lines."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)

    dYCoord = dYCoord - (oGeneralNote.FittedTextHeight + 0.5)
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, dYCoord), "5.")
    
    sText = "Here is the last and final line of text."
    Set oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(4, dYCoord), sText)
End Sub&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2020 05:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9304597#M66730</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-08T05:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9308620#M66731</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome to the forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'll want to use formatted text to do this, here's an example, and another rule you can use to see the text formatting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;creates 3 lines of different font size&lt;/P&gt;
&lt;PRE&gt;' a reference to the drawing document.
' This assumes a drawing document is active.
Dim oDrawDoc As DrawingDocument
oDrawDoc = ThisApplication.ActiveDocument

' a reference to the active sheet.
Dim oActiveSheet As Sheet
oActiveSheet = oDrawDoc.ActiveSheet

' a reference to the GeneralNotes object
Dim oGeneralNotes As GeneralNotes
oGeneralNotes = oActiveSheet.DrawingNotes.GeneralNotes

Dim oTG As TransientGeometry
oTG = ThisApplication.TransientGeometry


oText1 = "Drawing Notes"
oFontSize1 = .1 *2.54 '2.54 coverts to inches
oText2 = "Some text"
oFontSize2 = .2 *2.54 '2.54 coverts to inches
oText3 = "Some more text"
oFontSize3 = .3 *2.54 '2.54 coverts to inches

Dim sFormattedText As String
sFormattedText = _
"&amp;lt;StyleOverride FontSize ='" &amp;amp; oFontSize1 &amp;amp; "'&amp;gt;" &amp;amp; oText1 &amp;amp; "&amp;lt;/StyleOverride&amp;gt;&amp;lt;Br/&amp;gt;" &amp;amp; _
"&amp;lt;StyleOverride FontSize ='" &amp;amp; oFontSize2 &amp;amp; "'&amp;gt;" &amp;amp; oText2 &amp;amp; "&amp;lt;/StyleOverride&amp;gt;&amp;lt;Br/&amp;gt;" &amp;amp; _
"&amp;lt;StyleOverride FontSize ='" &amp;amp; oFontSize3 &amp;amp; "'&amp;gt;" &amp;amp; oText3 &amp;amp; "&amp;lt;/StyleOverride&amp;gt;&amp;lt;Br/&amp;gt;"

oGeneralNote = oGeneralNotes.AddFitted(oTG.CreatePoint2d(3, 16), sFormattedText)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;utility rule that will show you the formatting for the first general note on the sheet&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;' a reference to the drawing document.&lt;/SPAN&gt;
&lt;SPAN&gt;' This assumes a drawing document is active.&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt; = &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;' a reference to the active sheet.&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oActiveSheet&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sheet&lt;/SPAN&gt;
&lt;SPAN&gt;oActiveSheet&lt;/SPAN&gt; = &lt;SPAN&gt;oDrawDoc&lt;/SPAN&gt;.&lt;SPAN&gt;ActiveSheet&lt;/SPAN&gt;

&lt;SPAN&gt;' a reference to the GeneralNotes object&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oGeneralNotes&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;GeneralNotes&lt;/SPAN&gt;
&lt;SPAN&gt;oGeneralNotes&lt;/SPAN&gt; = &lt;SPAN&gt;oActiveSheet&lt;/SPAN&gt;.&lt;SPAN&gt;DrawingNotes&lt;/SPAN&gt;.&lt;SPAN&gt;GeneralNotes&lt;/SPAN&gt;

&lt;SPAN&gt;oFormattedText&lt;/SPAN&gt; = &lt;SPAN&gt;oGeneralNotes&lt;/SPAN&gt;.&lt;SPAN&gt;Item&lt;/SPAN&gt;(1).&lt;SPAN&gt;FormattedText&lt;/SPAN&gt;

&lt;SPAN&gt;InputBox&lt;/SPAN&gt;(&lt;SPAN&gt;"Here is the formatted text for the 1st note on this sheet"&lt;/SPAN&gt; _
&amp;amp; &lt;SPAN&gt;vbLf&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;vbLf&lt;/SPAN&gt; &amp;amp; &lt;SPAN&gt;"Copy and paste it to examine the syntax"&lt;/SPAN&gt;, &lt;SPAN&gt;"iLogic"&lt;/SPAN&gt;, &lt;SPAN&gt;oFormattedText&lt;/SPAN&gt;)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 22:15:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9308620#M66731</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2020-02-10T22:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310228#M66732</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_W&lt;/a&gt; .&amp;nbsp; Do you know of any good references for all the available possibilities of the coding used within FormattedText.&amp;nbsp; I've done a little with it before, but only using what few code snippets I've seen other use here in the forums.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 14:37:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310228#M66732</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2020-02-11T14:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310311#M66733</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, I don't know of a good reference...&amp;nbsp; typically I'll create an example of the text I want to automate and then retrieve the formatting syntax using a rule like the second example above, and then sort of reverse engineer it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:00:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310311#M66733</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2020-02-11T15:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310334#M66734</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_W&lt;/a&gt;&amp;nbsp; It kind of looks like HTML.&amp;nbsp; Do you know if that is what it is?&amp;nbsp; If so, that would make it simpler to research, since there are tons of HTML resources online.&lt;/P&gt;&lt;P&gt;I've searched through several items within the online help for the Programming Interface, but in every instance where FormattedText is mentioned, I don't see any reference to where they are getting the formatting code they are using, or what type of coding it is.&amp;nbsp; It seems this something that should be addressed in future online help publishings.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:09:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310334#M66734</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2020-02-11T15:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310377#M66735</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7812054"&gt;@WCrihfield&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Indeed it looks to be very much HTML based... Inventor might be handling some of it a bit differently than other html editors that I've used.... so I'm not sure that it's a 1 to 1 comparison... but I've not really ever paid that much attention to it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 15:25:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9310377#M66735</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2020-02-11T15:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic general notes in one text box multiple text heights</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9313649#M66736</link>
      <description>&lt;P&gt;FYI&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_W&lt;/a&gt;&amp;nbsp; I asked MjDeck (Mike Deck) about it, and he said it is XML and gave me a link.&amp;nbsp; Here's the link.&lt;/P&gt;&lt;P&gt;&lt;A title="XML Tags for FormattedText" href="https://help.autodesk.com/view/INVNTOR/2020/ENU/?guid=GUID-915B75BA-4696-4fc7-A2C6-54B2BACDE7E1" target="_blank" rel="noopener"&gt;https://help.autodesk.com/view/INVNTOR/2020/ENU/?guid=GUID-915B75BA-4696-4fc7-A2C6-54B2BACDE7E1&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This explains it.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Feb 2020 17:46:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/ilogic-general-notes-in-one-text-box-multiple-text-heights/m-p/9313649#M66736</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2020-02-12T17:46:12Z</dc:date>
    </item>
  </channel>
</rss>

