VsTextViewClass.SetSelection Method
Selects specified text.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Public Overridable Function SetSelection ( _
iAnchorLine As Integer, _
iAnchorCol As Integer, _
iEndLine As Integer, _
iEndCol As Integer _
) As Integer
public virtual int SetSelection(
int iAnchorLine,
int iAnchorCol,
int iEndLine,
int iEndCol
)
public:
virtual int SetSelection(
[InAttribute] int iAnchorLine,
[InAttribute] int iAnchorCol,
[InAttribute] int iEndLine,
[InAttribute] int iEndCol
)
abstract SetSelection :
iAnchorLine:int *
iAnchorCol:int *
iEndLine:int *
iEndCol:int -> int
override SetSelection :
iAnchorLine:int *
iAnchorCol:int *
iEndLine:int *
iEndCol:int -> int
public function SetSelection(
iAnchorLine : int,
iAnchorCol : int,
iEndLine : int,
iEndCol : int
) : int
Parameters
iAnchorLine
Type: System.Int32[in] Anchor line position for the selection.
iAnchorCol
Type: System.Int32[in] Anchor column position for the selection. Viewcol coordinates may include virtual space.
iEndLine
Type: System.Int32[in] End line position for the selection.
iEndCol
Type: System.Int32[in] End column position for the selection. Viewcol coordinates may include virtual space.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsTextView.SetSelection(Int32, Int32, Int32, Int32)
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.