TdxRichEditSearchDirection Enum
In This Article
Enumerates available search directions.
#Declaration
Delphi
TdxRichEditSearchDirection = (
Forward,
Backward
);
#Members
Name |
---|
Forward
|
Backward
|
#Remarks
Options include:
Value | Description |
---|---|
Forward | A text search routine progresses through the target document range from its start to end. |
Backward | A text search routine progresses through the target document range in the opposite direction, towards the range start. |
The IdxRichEditSubDocument interface’s first overloaded StartSearch function variant accepts a TdxRichEditSearchDirection value as the ADirection optional parameter.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Forward
value in code.
See Also