Resets the position of the text marker.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
声明
Function ResetSpan ( _
    iStartLine As Integer, _
    iStartIndex As Integer, _
    iEndLine As Integer, _
    iEndIndex As Integer _
) As Integer
用法
Dim instance As IVsTextLineMarker
Dim iStartLine As Integer
Dim iStartIndex As Integer
Dim iEndLine As Integer
Dim iEndIndex As Integer
Dim returnValue As Integer
returnValue = instance.ResetSpan(iStartLine, _
    iStartIndex, iEndLine, iEndIndex)
int ResetSpan(
    int iStartLine,
    int iStartIndex,
    int iEndLine,
    int iEndIndex
)
int ResetSpan(
    [InAttribute] int iStartLine, 
    [InAttribute] int iStartIndex, 
    [InAttribute] int iEndLine, 
    [InAttribute] int iEndIndex
)
abstract ResetSpan : 
        iStartLine:int * 
        iStartIndex:int * 
        iEndLine:int * 
        iEndIndex:int -> int 
function ResetSpan(
    iStartLine : int, 
    iStartIndex : int, 
    iEndLine : int, 
    iEndIndex : int
) : int
Parameters
- iStartLine
 Type: System.Int32
 [in] Line containing the beginning of the text marker.
- iStartIndex
 Type: System.Int32
 [in] Starting character index for the text marker within the line. This value must be less than or equal to the length of line.
- iEndLine
 Type: System.Int32
 [in] Line containing the end of the text marker.
- iEndIndex
 Type: System.Int32
 [in] Ending character index for the text marker within the line. This value must be length of line.
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:
HRESULT IVsTextLineMarker::ResetSpan(
   [in] long iStartLine,
   [in] CharIndex iStartIndex,
   [in] long iEndLine
);
Use this method to change the extent of a text marker
.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.