Partager via


IVsTextView.GetWordExtent, méthode

Retourne l'étendue actuelle de mot.

Espace de noms :  Microsoft.VisualStudio.TextManager.Interop
Assembly :  Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)

Syntaxe

'Déclaration
Function GetWordExtent ( _
    iLine As Integer, _
    iCol As Integer, _
    dwFlags As UInteger, _
    <OutAttribute> pSpan As TextSpan() _
) As Integer
int GetWordExtent(
    int iLine,
    int iCol,
    uint dwFlags,
    TextSpan[] pSpan
)
int GetWordExtent(
    [InAttribute] int iLine, 
    [InAttribute] int iCol, 
    [InAttribute] unsigned int dwFlags, 
    [OutAttribute] array<TextSpan>^ pSpan
)
abstract GetWordExtent : 
        iLine:int * 
        iCol:int * 
        dwFlags:uint32 * 
        pSpan:TextSpan[] byref -> int
function GetWordExtent(
    iLine : int, 
    iCol : int, 
    dwFlags : uint, 
    pSpan : TextSpan[]
) : int

Paramètres

  • iLine
    Type : Int32

    [in] index de ligne pour les lignes qui contient le mot.

  • iCol
    Type : Int32

    [in] index de colonne pour le mot.

  • dwFlags
    Type : UInt32

    [in] marque d'un indicateur spécifier comment l'étendue de mot est déterminée. Pour une liste de valeurs d'dwFlags, consultez l'WORDEXTFLAGS.

Valeur de retour

Type : Int32
Si la méthode réussit, elle retourne S_OK.En cas d'échec, un code d'erreur est retourné.

Notes

Signature de COM

De textmgr.idl :

HRESULT IVsTextView::GetWordExtent(
   [in] long iLine,
   [in] CharIndex iCol,
   [in] DWORD dwFlags,
   [out] TextSpan *pSpan
);

L'étendue de mot est partout où l'éditeur détermine la limite de mot pour être. Par exemple, si vous placez votre curseur dans dans un mot puis double-cliquer, le principal éditeur de texte suppose que l'étendue de mot est qui mot entier.

Sécurité .NET Framework

Voir aussi

Référence

IVsTextView Interface

Microsoft.VisualStudio.TextManager.Interop, espace de noms