Hi @Stakin
One way to do this would be to add a "Leader Text" attached to the view and then remove the leader. My preferred way though is to add a sketch to the view and place the text in the sketch. See example below:
Dim oView As DrawingView = ThisApplication.CommandManager.Pick(SelectionFilterEnum.kDrawingViewFilter, "Pick view")
Dim oText As String = InputBox("Note text:", "text", "Some text...")
Dim oSketch As DrawingSketch = oView.Sketches.Add()
Dim oPoint As Point2d = oSketch.SheetToSketchSpace(ThisApplication.TransientGeometry.CreatePoint2d _
(oView.Left + oView.Width / 2, oView.Top - oView.Height - 0.5))
oSketch.Edit
Dim oNote As Inventor.TextBox = oSketch.TextBoxes.AddFitted(oPoint, oText)
oNote.HorizontalJustification = HorizontalTextAlignmentEnum.kAlignTextCenter
oNote.VerticalJustification = VerticalTextAlignmentEnum.kAlignTextUpper
oSketch.ExitEdit
In this example i'm placing the text centered 0.5 cm below the view.