CBLFullTextQueryRow
@interface CBLFullTextQueryRow : CBLQueryRowA single result from a full-text CBLQuery.
- 
                  
                  The text emitted when the view was indexed (the argument to CBLTextKey()) which contains the match(es). DeclarationObjective-C @property (readonly, atomic, nullable) NSString *fullTextMatched;
- 
                  
                  The number of query words that were found in the fullText. (If a query word appears more than once, only the first instance is counted.) DeclarationObjective-C @property (readonly, nonatomic) NSUInteger matchCount;
- 
                  
                  The character range in the fullText of a particular match. DeclarationObjective-C - (NSRange)textRangeOfMatch:(NSUInteger)matchNumber;ParametersmatchNumberThe zero based match index. Return ValueThe charater range in the fullText of the given match index. 
- 
                  
                  The index of the search term matched by a particular match. Search terms are the individual words in the full-text search expression, skipping duplicates and noise/stop-words. They’re numbered from zero. DeclarationObjective-C - (NSUInteger)termIndexOfMatch:(NSUInteger)matchNumber;ParametersmatchNumberThe zero based match index. Return ValueThe index of the search term matched by the given match index. 
 CBLFullTextQueryRow Class Reference
        CBLFullTextQueryRow Class Reference