IVsTextManager.NavigateToLineAndColumn, méthode
Les recherches ou crée une vue appropriée dans la mémoire tampon spécifiée et place la sélection à l'emplacement spécifié.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Function NavigateToLineAndColumn ( _
pBuffer As IVsTextBuffer, _
ByRef guidDocViewType As Guid, _
iStartRow As Integer, _
iStartIndex As Integer, _
iEndRow As Integer, _
iEndIndex As Integer _
) As Integer
int NavigateToLineAndColumn(
IVsTextBuffer pBuffer,
ref Guid guidDocViewType,
int iStartRow,
int iStartIndex,
int iEndRow,
int iEndIndex
)
int NavigateToLineAndColumn(
[InAttribute] IVsTextBuffer^ pBuffer,
[InAttribute] Guid% guidDocViewType,
[InAttribute] int iStartRow,
[InAttribute] int iStartIndex,
[InAttribute] int iEndRow,
[InAttribute] int iEndIndex
)
abstract NavigateToLineAndColumn :
pBuffer:IVsTextBuffer *
guidDocViewType:Guid byref *
iStartRow:int *
iStartIndex:int *
iEndRow:int *
iEndIndex:int -> int
function NavigateToLineAndColumn(
pBuffer : IVsTextBuffer,
guidDocViewType : Guid,
iStartRow : int,
iStartIndex : int,
iEndRow : int,
iEndIndex : int
) : int
Paramètres
pBuffer
Type : Microsoft.VisualStudio.TextManager.Interop.IVsTextBuffer[in] pointeur à l'interface d'IVsTextBuffer.
guidDocViewType
Type : Guid%[in] GUID identifiant la vue. Cette valeur doit toujours être LOGVIEWID_TextView.
iStartRow
Type : Int32[in] à partir de la ligne pour que la sélection la trouve.
iStartIndex
Type : Int32[in] index de départ pour que la sélection la trouve.
iEndRow
Type : Int32[in] terminant la ligne pour que la sélection la trouve.
iEndIndex
Type : Int32[in] index de fin pour que la sélection la trouve.
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 IVsTextManager::NavigateToLineAndColumn(
[in] IVsTextBuffer* pBuffer,
[in] REFGUID guidDocViewType,
[in] long iStartRow,
[in] CharIndex iStartIndex,
[in] long iEndRow,
[in] CharIndex iEndIndex
);
Pour utiliser cette méthode, passez un pointeur à une mémoire tampon de texte et une ligne/position de la colonne dans cette mémoire tampon. La méthode recherche ensuite la mémoire tampon, affiche une vue si la vue n'est pas actuellement - actif, et place ensuite la sélection à l'étendue spécifiée du texte.
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.