ITabCellSearch.WholeWordsOnly

Syntax

WholeWordsOnly: Boolean;

Description

The WholeWordsOnly property determines whether only whole words matches are to be found.

Example

Executing the example requires a form with the Button1 button located on it, the TabSheetBox component and the UiTabSheet component named UiTabSheet1, that is used as a data source for the TabSheetBox component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    TSheet: ITabSheet;
    CellSearch: ITabCellSearch;
    Result: ITabSearchResult;
    i, j: Integer;
Begin
    TSheet := UiTabSheet1.TabSheet;
    CellSearch := TSheet.CreateCellSearch;
    CellSearch.Text := "price";
    CellSearch.WholeWordsOnly := True;
    Result := CellSearch.Execute;
    If Result <> Null Then
        i := Result.CurrentRow;
        j := Result.CurrentColumn;
    End If;
End Sub Button1OnClick;

Clicking this button starts searching the "price" text in the cells. The whole word is searched for. After executing the event, the variable i will contain the row number, and the j - the cell column number.

See also:

ITabCellSearch