Indicates that a buffer boundary begins or ends a line, without requiring white space characters in the buffer.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
声明
<FlagsAttribute> _
Public Enumeration __VSFINDBUFFERFLAGS
用法
Dim instance As __VSFINDBUFFERFLAGS
[FlagsAttribute]
public enum __VSFINDBUFFERFLAGS
[FlagsAttribute]
public enum class __VSFINDBUFFERFLAGS
[<FlagsAttribute>]
type __VSFINDBUFFERFLAGS
public enum __VSFINDBUFFERFLAGS
Members
| Member name | Description | |
|---|---|---|
| VSFB_StartOfLine | The buffer starts a line. | |
| VSFB_EndOfLine | The buffer ends a line. | |
| FINDBUFFER_StartOfLine | Deprecated. Do not use. | |
| FINDBUFFER_EndOfLine | Deprecated. Do not use. | 
Remarks
COM Signature
From textfind.idl:
enum __VSFINDBUFFERFLAGS {
   VSFB_StartOfLine          =   0x0001,
   VSFB_EndOfLine            =   0x0002,
   // deprecated compatability names
   FINDBUFFER_StartOfLine    =   0x0001,
   FINDBUFFER_EndOfLine      =   0x0002
};
typedef DWORD VSFINDBUFFERFLAGS;