FindText
Syntax | BOOL = CS.FindText (sText, bMatchCase) |
---|---|
Use to | Find and highlight the next occurrence of specific text. |
Parameters |
|
Comments |
|
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.CursorRow = 1 If CS.FindText(“Rand”, False) Then CS.FindText “Favorite”, False If CS.GetSelectedText(sText) Then |
What this example does |
|