IVsEditorGoBackLocations.SetMergeableGoBackLocation Method
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function SetMergeableGoBackLocation ( _
fCurrentCaretPos As Integer, _
iBaseLine As Integer, _
iBaseCol As Integer _
) As Integer
int SetMergeableGoBackLocation(
int fCurrentCaretPos,
int iBaseLine,
int iBaseCol
)
int SetMergeableGoBackLocation(
[InAttribute] int fCurrentCaretPos,
[InAttribute] int iBaseLine,
[InAttribute] int iBaseCol
)
abstract SetMergeableGoBackLocation :
fCurrentCaretPos:int *
iBaseLine:int *
iBaseCol:int -> int
function SetMergeableGoBackLocation(
fCurrentCaretPos : int,
iBaseLine : int,
iBaseCol : int
) : int
Parameters
- fCurrentCaretPos
Type: System.Int32
[in]
- iBaseLine
Type: System.Int32
[in]
- iBaseCol
Type: System.Int32
[in]
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
[C++]
HRESULT IVsEditorGoBackLocations::SetMergeableGoBackLocation(
[in] BOOL fCurrentCaretPos,
[in] long iBaseLine,
[in] long iBaseCol
);
The fCurrentCaretPos parameter allows you to have the current caret position marked instead of the line and column. If fCurrentCaretPos is false, valid iBaseLine and iBaseCol are required.
.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.