This structure defines the search terms that are found and highlighted in the HTML output. It is initialized by calling KVHTMLSetHighlight()
and is defined in kvtypes.h
. See KVHTMLSetHighlight().
typedef struct tag_KVHTMLHighlight { KVStructHeader; char **ppHLTerms; int nSize; KVCharset eCharset; char *pHLStart; char *pHLEnd; BOOL bMatchCase; int nReserved; void *pReserved; } KVHTMLHighlight;
|
The KeyView version of the structure. See KVStructHead. |
|
An array of terms to be found and highlighted in the HTML output. |
|
The number of terms to be found and highlighted in the HTML output. |
|
The character set of the term. The available character sets are enumerated in When |
|
The start tag that specifies the text attributes used to highlight the text string. For example, you could specify
|
|
The end tag used to close the highlighting start tag. The end tag for the example above would be |
|
This Boolean applies only to searches on documents with a target character set of 1252. If this Boolean is set, the text search is case sensitive. By default, the text search is case insensitive. |
|
Reserved for future use. |
|
Reserved for future use. |
|