IVsTextImageEvents.OnTextChange, méthode
Informe le client d'une modification d'image de texte.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Sub OnTextChange ( _
taStart As TextAddress, _
taEnd As TextAddress, _
taNewEnd As TextAddress _
)
void OnTextChange(
TextAddress taStart,
TextAddress taEnd,
TextAddress taNewEnd
)
void OnTextChange(
[InAttribute] TextAddress taStart,
[InAttribute] TextAddress taEnd,
[InAttribute] TextAddress taNewEnd
)
abstract OnTextChange :
taStart:TextAddress *
taEnd:TextAddress *
taNewEnd:TextAddress -> unit
function OnTextChange(
taStart : TextAddress,
taEnd : TextAddress,
taNewEnd : TextAddress
)
Paramètres
taStart
Type : Microsoft.VisualStudio.TextManager.Interop.TextAddress[in] démarrant l'adresse de l'image de texte.
taEnd
Type : Microsoft.VisualStudio.TextManager.Interop.TextAddress[in] terminant l'adresse de l'image de texte.
taNewEnd
Type : Microsoft.VisualStudio.TextManager.Interop.TextAddress[in] nouvelle adresse de fin d'image de texte.
Notes
Signature de COM
De textmgr.idl :
HRESULT IVsTextImageEvents::OnTextChange(
[in] TextAddress taStart,
[in] TextAddress taEnd,
[in] TextAddress taNewEnd
);
L'environnement passe un pointeur à cette interface via un appel à l'AdviseTextImageEvents. Utilisez cette méthode pour informer l'environnement de toutes les modifications à votre image de 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.