__VSFINDBUFFERFLAGS Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that a buffer boundary begins or ends a line, without requiring white space characters in the buffer.
This enumeration supports a bitwise combination of its member values.
public enum class __VSFINDBUFFERFLAGS
public enum class __VSFINDBUFFERFLAGS
enum __VSFINDBUFFERFLAGS
[System.Flags]
public enum __VSFINDBUFFERFLAGS
[<System.Flags>]
type __VSFINDBUFFERFLAGS =
Public Enum __VSFINDBUFFERFLAGS
- Inheritance
-
__VSFINDBUFFERFLAGS
- Attributes
Fields
Name | Value | Description |
---|---|---|
FINDBUFFER_StartOfLine | 1 | Deprecated. Do not use. |
VSFB_StartOfLine | 1 | The buffer starts a line. |
FINDBUFFER_EndOfLine | 2 | Deprecated. Do not use. |
VSFB_EndOfLine | 2 | The buffer ends 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;