__VSFINDBUFFERFLAGS Enumeration
Visual Studio 2015
Indicates that a buffer boundary begins or ends a line, without requiring white space characters in the buffer.
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
| Member name | Description | |
|---|---|---|
| FINDBUFFER_EndOfLine | Deprecated. Do not use. | |
| FINDBUFFER_StartOfLine | Deprecated. Do not use. | |
| VSFB_EndOfLine | The buffer ends a line. | |
| VSFB_StartOfLine | The buffer starts a line. |
From textfind.idl:
enum __VSFINDBUFFERFLAGS { VSFB_StartOfLine = 0x0001, VSFB_EndOfLine = 0x0002, // deprecated compatability names FINDBUFFER_StartOfLine = 0x0001, FINDBUFFER_EndOfLine = 0x0002 }; typedef DWORD VSFINDBUFFERFLAGS;
Show: