__VSFINDRESULTLOC Enumeration

 

These values denote the window in which the results of a bulk find operation appear.

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

public enum __VSFINDRESULTLOC

Member nameDescription
FINDREPLACE_RESULTLOC_ResultsList1

Deprecated. Do not use.

FINDREPLACE_RESULTLOC_ResultsList2

Deprecated. Do not use.

VSFRL_FindResultList1

Results go in Find Results 1.

VSFRL_FindResultList2

Results go in Find Results 2.

From textfind.idl:

enum __VSFINDRESULTLOC {
   VSFRL_FindResultList1 = 1,
   VSFRL_FindResultList2 = 2,

   // deprecated compatability names 
   FINDREPLACE_RESULTLOC_ResultsList1 = 1,
   FINDREPLACE_RESULTLOC_ResultsList2 = 2
};
typedef DWORD VSFINDRESULTLOC;
Return to top
Show: