Compartir a través de


IVsTextStorage.Storage_Find (Método)

Espacio de nombres:  Microsoft.VisualStudio.TextManager.Interop
Ensamblado:  Microsoft.VisualStudio.TextManager.Interop (en Microsoft.VisualStudio.TextManager.Interop.dll)

Sintaxis

'Declaración
Function Storage_Find ( _
    pszText As String, _
    iStartLine As Integer, _
    iStartIndex As Integer, _
    iEndLine As Integer, _
    iEndIndex As Integer, _
    iFlags As Integer, _
    <OutAttribute> ByRef piLine As Integer, _
    <OutAttribute> ByRef piCol As Integer _
) As Integer
int Storage_Find(
    string pszText,
    int iStartLine,
    int iStartIndex,
    int iEndLine,
    int iEndIndex,
    int iFlags,
    out int piLine,
    out int piCol
)
int Storage_Find(
    [InAttribute] String^ pszText, 
    [InAttribute] int iStartLine, 
    [InAttribute] int iStartIndex, 
    [InAttribute] int iEndLine, 
    [InAttribute] int iEndIndex, 
    [InAttribute] int iFlags, 
    [OutAttribute] int% piLine, 
    [OutAttribute] int% piCol
)
abstract Storage_Find : 
        pszText:string * 
        iStartLine:int * 
        iStartIndex:int * 
        iEndLine:int * 
        iEndIndex:int * 
        iFlags:int * 
        piLine:int byref * 
        piCol:int byref -> int
function Storage_Find(
    pszText : String, 
    iStartLine : int, 
    iStartIndex : int, 
    iEndLine : int, 
    iEndIndex : int, 
    iFlags : int, 
    piLine : int, 
    piCol : int
) : int

Parámetros

  • pszText
    Tipo: String

    [in] Texto que se va a buscar.

  • iStartLine
    Tipo: Int32

    [in] línea inicial.

  • iStartIndex
    Tipo: Int32

    [in] Iniciar el índice del carácter en la línea (debe ser la longitud de <= de línea).

  • iEndLine
    Tipo: Int32

    [in] Línea de cierre.

  • iEndIndex
    Tipo: Int32

    [in] Índice del carácter final de la línea (debe ser la longitud de <= de línea).

  • iFlags
    Tipo: Int32

    [in]

  • piLine
    Tipo: Int32%

    [out] Línea que contiene el inicio del texto adaptado.

  • piCol
    Tipo: Int32%

    [out] Columna de inicio del texto adaptado.

Valor devuelto

Tipo: Int32
si el método tiene éxito, devuelve S_OK.Si se produce un error, devuelve un código de error.

Comentarios

Prototipo COM

de textmgr.idl:

HRESULT IVsTextStorage::Storage_Find(
   [in] const WCHAR * pszText,
   [in] long iStartLine,
   [in] CharIndex iStartIndex,
   [in] long iEndLine,
   [in] CharIndex iEndIndex,
   [in] long iFlags,
   [out] long * piLine,
   [out] CharIndex * piCol
);

Seguridad de .NET Framework

Vea también

Referencia

IVsTextStorage Interfaz

Microsoft.VisualStudio.TextManager.Interop (Espacio de nombres)