TextSelection::TextPane Property
Visual Studio 2015
Gets the text pane that contains the text selection.
Assembly: EnvDTE (in EnvDTE.dll)
Sub TextPaneExample() ' Before running this example, open a code document. Dim objSel As TextSelection = DTE.ActiveDocument.Selection Dim objTP As TextPane = objSel.TextPane ' List text pane height and width property values. MsgBox("Text pane height: " & objTP.Height & vbCr & "Text pane width: " & objTP.Width) End Sub
Show: