__VSFINDBUFFERFLAGS Enumeration
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
'Declaration
<FlagsAttribute> _
Public Enumeration __VSFINDBUFFERFLAGS
[FlagsAttribute]
public enum __VSFINDBUFFERFLAGS
[FlagsAttribute]
public enum class __VSFINDBUFFERFLAGS
[<FlagsAttribute>]
type __VSFINDBUFFERFLAGS
public enum __VSFINDBUFFERFLAGS
Members
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. |
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;