IVsFindTarget::NotifyFindTarget Method (UInt32)

 

Sends notification to a find target of a change in status.

Namespace:   Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)

int NotifyFindTarget(
	unsigned int notification
)

Parameters

notification
Type: System::UInt32

[in] Specifies notification. Values are taken from the __VSFTNOTIFY enumeration.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From textmgr.idl:

HRESULT IVsFindTarget::NotifyFindTarget(
   [in] VSFTNOTIFY notification
);

The environment will call NotifyFindTarget to notify each find target that a change of state is imminent. You can ignore the notification, or respond in whatever manner is appropriate to your editor.

Return to top
Show: