IVsTextViewEvents.OnSetFocus Method
Notifies a client when a view receives focus.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Sub OnSetFocus ( _
pView As IVsTextView _
)
void OnSetFocus(
IVsTextView pView
)
void OnSetFocus(
[InAttribute] IVsTextView^ pView
)
abstract OnSetFocus :
pView:IVsTextView -> unit
function OnSetFocus(
pView : IVsTextView
)
Parameters
pView
Type: Microsoft.VisualStudio.TextManager.Interop.IVsTextView[in] Pointer to the IVsTextView interface.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsTextViewEvents::OnSetFocus(
[in] IVsTextView *pView
);
The reference count is not incremented when you obtain a pointer to IVsTextView; if you want to keep it, call AddRef on it explicitly.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.