__VSFINDRESULTLOC Enumeration
Visual Studio 2015
These values denote the window in which the results of a bulk find operation appear.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| 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;
Show: