IVsTextViewEvents.OnChangeScrollInfo, méthode
Avertit un client lorsque les informations de défilement sont modifiées.
Espace de noms : Microsoft.VisualStudio.TextManager.Interop
Assembly : Microsoft.VisualStudio.TextManager.Interop (dans Microsoft.VisualStudio.TextManager.Interop.dll)
Syntaxe
'Déclaration
Sub OnChangeScrollInfo ( _
pView As IVsTextView, _
iBar As Integer, _
iMinUnit As Integer, _
iMaxUnits As Integer, _
iVisibleUnits As Integer, _
iFirstVisibleUnit As Integer _
)
void OnChangeScrollInfo(
IVsTextView pView,
int iBar,
int iMinUnit,
int iMaxUnits,
int iVisibleUnits,
int iFirstVisibleUnit
)
void OnChangeScrollInfo(
[InAttribute] IVsTextView^ pView,
[InAttribute] int iBar,
[InAttribute] int iMinUnit,
[InAttribute] int iMaxUnits,
[InAttribute] int iVisibleUnits,
[InAttribute] int iFirstVisibleUnit
)
abstract OnChangeScrollInfo :
pView:IVsTextView *
iBar:int *
iMinUnit:int *
iMaxUnits:int *
iVisibleUnits:int *
iFirstVisibleUnit:int -> unit
function OnChangeScrollInfo(
pView : IVsTextView,
iBar : int,
iMinUnit : int,
iMaxUnits : int,
iVisibleUnits : int,
iFirstVisibleUnit : int
)
Paramètres
pView
Type : Microsoft.VisualStudio.TextManager.Interop.IVsTextView[in] pointeur à un objet de vue.
iBar
Type : Int32[in] valeur entière faisant référence à la barre.
iMinUnit
Type : Int32[in] valeur entière pour les unités minimale.
iMaxUnits
Type : Int32[in] valeur entière pour les unités maximale.
iVisibleUnits
Type : Int32[in] valeur entière pour les unités visibles.
iFirstVisibleUnit
Type : Int32[in] valeur entière pour la première unité visible.
Notes
Signature de COM
De textmgr.idl :
HRESULT IVsTextViewEvents::OnChangeScrollInfo(
[in] IVsTextView *pView,
[in] long iBar,
[in] long iMinUnit,
[in] long iMaxUnits,
[in] long iVisibleUnits,
[in] long iFirstVisibleUnit
);
Le nombre de références n'est pas incrémenté lorsque vous obtenez un pointeur à IVsTextView ; si vous souhaitez le conserver, appelez AddRef dessus explicitement.
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.