Set the current search mode. For example, the following code turns on the regular
expression:
TextSearch ts = new TextSearch();
...
int mode = ts.getMode();
mode |= TextSearch.e_reg_expression;
ts.setMode(mode);
...
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetMode(
int mode
)
Public Sub SetMode (
mode As Integer
)
public:
virtual void SetMode(
[InAttribute] int mode
) sealed
Parameters
- mode
- Type: SystemInt32
the search mode to set.
See Also