UndoFind method
Highlighting is removed from the current found string.
- Method
- short UndoFind( )
- Description
- Highlighting is removed from the current found string.
- Return Value
- Refer to return codes.
- See Also
- FindStringInDoc
C/C + +
The following example removes highlighting from a found string. CArsOle * pArsCtrl;
short rc;
.
.
rc = pArsCtrl->UndoFind( );
if ( rc != ARS_OLE_RC_SUCCESS )
ERROR;
.
.
Visual Basic
Dim rc As Integer
.
.
rc = ArsOle.UndoFind ()
If rc <> ARS_OLE_RC_SUCCESS Then
MsgBox "ERROR"
End
End If
.
.