Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm trying to get the text from a general note on a drawing, and insert it into a form within an add-in.
But, if the note has style overrides such as this:
(see attached 2022 drawing example)
This is the result that is returned using the GeneralNote.FormattedText
MsgBox(oGeneralNote.FormattedText,,"Formatted Text")
and this is the result using just GeneralNote.Text
MsgBox(oGeneralNote.Text,,"Text")
Neither of those are the results I'm after.
Ultimately, I'm looking to get something like this in a form:
Not this:
and not this:
Is there another way to extract the text that I'm overlooking?
Solved! Go to Solution.