Represents the search term unit. Multiple search term units make up a full-text search query.
Members
| Name | Description | |
|---|---|---|
![]() |
AddField | Adds a field name to array of fields to search against. |
![]() |
Field | The field name at the given index. |
![]() |
FieldCount | The field name count. |
![]() |
SearchOperator | The boolean operator used between terms in a keyword search. |
![]() |
SearchTerm | The search term. |
![]() |
SearchType | The search term modifier to apply against the search term. |
![]() |
SearchWhere | The search where clause. |
IFullTextSearchTerm.AddField Method
Adds a field name to array of fields to search against.
Public Sub AddField ( _
    ByVal FieldName As String _
)
public void AddField (
    string FieldName
);
IFullTextSearchTerm.Field Property
The field name at the given index.
Public Function get_Field ( _
    ByVal Index As Integer _
) As String
public string get_Field (
    int Index
);
IFullTextSearchTerm.FieldCount Property
The field name count.
Public ReadOnly Property FieldCount As Integer
public int FieldCount {get;}
IFullTextSearchTerm.SearchOperator Property
The boolean operator used between terms in a keyword search.
Public Property SearchOperator As esriFullTextSearchOperator
public esriFullTextSearchOperator SearchOperator {get; set;}
IFullTextSearchTerm.SearchTerm Property
The search term.
Public Property SearchTerm As String
public string SearchTerm {get; set;}
IFullTextSearchTerm.SearchType Property
The search term modifier to apply against the search term.
Public Property SearchType As esriFullTextSearchType
public esriFullTextSearchType SearchType {get; set;}
IFullTextSearchTerm.SearchWhere Property
The search where clause.
Public Property SearchWhere As String
public string SearchWhere {get; set;}
Classes that implement IFullTextSearchTerm
| Classes | Description |
|---|---|
| FullTextSearchTerm | Esri FullText Search Term object. |


