Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have cobbled together a set of forms and rules that is triggered when we start a new idw. It presents the user with a drop down list of tblocks and drawing notes. The user picks which tblock he wants, and then pick a note from a list for each note position.
These notes are placed in the drawing as a single text element of fixed width. The problem is, this text box forces dim lines to break if it gets close to them. Is there a way to close-crop the textbox boundary to the text or, to place it behind the idw geometry so that it does not break the dims?
Here is the portion of the rule that builds and places the text:
' Build the Note sNoteAll = sNote1 + vbCrLf + sNote2 + vbCrLf + sNote3 + vbCrLf + sNote4 + vbCrLf + sNote5 + vbCrLf + sNote6 + vbCrLf + sNote7 + vbCrLf + sNote8 + vbCrLf + sNote9 + vbCrLf + sNote10 + vbCrLf + sNote11 + vbCrLf + sNote12 + vbCrLf + sNote13 + vbCrLf + sNote14 + vbCrLf + sNote15 + vbCrLf + sNote16 + vbCrLf + sNote17 'MessageBox.Show(sNoteAll, "Title") 'Place the note Dim oNoteAll As GeneralNote oNoteAll = oGeneralNotes.AddFitted(oTG.CreatePoint2d(dXCoord, dYCoord), sNoteAll) oNoteAll.Rotation = oRotation oNoteAll.Width = oSetWidth
Mechanix Design Solutions inc.
Solved! Go to Solution.